diff options
author | Marvin Borner | 2020-10-03 13:33:29 +0200 |
---|---|---|
committer | Marvin Borner | 2020-10-03 13:33:29 +0200 |
commit | 88a2c395ad96c65d75ea64c57d68b62d93bc12c3 (patch) | |
tree | b476ebb9875789e857f5f8d96027aef292be93b7 /auth/public | |
parent | a6cd52452e504c23921bb0be32e883b9efd97da7 (diff) |
Added navbar
Diffstat (limited to 'auth/public')
-rw-r--r-- | auth/public/index.html | 5 | ||||
-rw-r--r-- | auth/public/style.css | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/auth/public/index.html b/auth/public/index.html index e927b13..b56db07 100644 --- a/auth/public/index.html +++ b/auth/public/index.html @@ -14,6 +14,11 @@ <title>Auth</title> </head> <body> + <div class="pure-menu pure-menu-horizontal"> + <a href="/" class="pure-menu-item pure-menu-link">Home</a> + <a href="/auth/api/logout" class="pure-menu-item pure-menu-link">Logout</a> + </div> + <form class="pure-form pure-form-stacked" action="api/login" method="post"> <fieldset> <legend>Login</legend> diff --git a/auth/public/style.css b/auth/public/style.css index 294fb98..4bbdc55 100644 --- a/auth/public/style.css +++ b/auth/public/style.css @@ -8,6 +8,10 @@ body { background-image: linear-gradient(315deg, #eec0c6 0%, #7ee8fa 74%); } +div { + background: white; +} + form { position: absolute; width: 30%; |