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 /poll/public/index.html | |
parent | a6cd52452e504c23921bb0be32e883b9efd97da7 (diff) |
Added navbar
Diffstat (limited to 'poll/public/index.html')
-rw-r--r-- | poll/public/index.html | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/poll/public/index.html b/poll/public/index.html index 8530b76..dd66c96 100644 --- a/poll/public/index.html +++ b/poll/public/index.html @@ -14,7 +14,12 @@ <title>Schüler-Ranking</title> </head> <body> - <div> + <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> + + <main> <form class="pure-form pure-form-stacked" action="api/answer" method="post"> <fieldset> <!-- TODO: Add progress --> @@ -28,7 +33,7 @@ <button type="submit" class="pure-button pure-button-primary">Antworten</button> </fieldset> </form> - </div> + </main> <script src="script.js" charset="utf-8"></script> </body> |