feat: logout button

This commit is contained in:
Robert Perce 2026-06-01 01:29:56 -05:00
parent edcab054b5
commit 66a45a2e16
4 changed files with 14 additions and 3 deletions

View file

@ -65,6 +65,9 @@ impl Layout {
} }
} }
body { body {
nav {
a href="/logout" { "logout of " (self.user.username) }
}
main { main {
(content) (content)

View file

@ -34,7 +34,6 @@
main { main {
width: 100%; width: 100%;
max-width: 600px;
margin: auto; margin: auto;
} }

View file

@ -16,6 +16,8 @@ html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abb
body { body {
width: 100%; width: 100%;
max-width: 600px;
margin: 0 auto;
height: 100vh; height: 100vh;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@ -58,3 +60,12 @@ form label {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
} }
nav {
display: flex;
flex-direction: row;
justify-content: flex-end;
gap: 1em;
width: 100%;
margin-bottom: 0.5em;
}

View file

@ -1,8 +1,6 @@
body { body {
padding-top: 2em; padding-top: 2em;
font-family: sans-serif; font-family: sans-serif;
max-width: 600px;
margin: auto;
} }
form { form {