diff options
Diffstat (limited to 'quotes/public/index.html')
-rw-r--r-- | quotes/public/index.html | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/quotes/public/index.html b/quotes/public/index.html index 32a46ec..343f5a3 100644 --- a/quotes/public/index.html +++ b/quotes/public/index.html @@ -14,7 +14,12 @@ <title>Zitate</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/add" method="post"> <fieldset> <legend>Zitate</legend> @@ -27,16 +32,16 @@ </form> <button id="open_TGI13.1">TGI13.1</button> - <ul style="display: none;" id="TGI13.1"></ul> + <ul style="display: none" id="TGI13.1"></ul> <button id="open_TGI13.2">TGI13.2</button> - <ul style="display: none;" id="TGI13.2"></ul> + <ul style="display: none" id="TGI13.2"></ul> <button id="open_TGM13.1">TGM13.1</button> - <ul style="display: none;" id="TGM13.1"></ul> + <ul style="display: none" id="TGM13.1"></ul> <button id="open_TGM13.2">TGM13.2</button> - <ul style="display: none;" id="TGM13.2"></ul> + <ul style="display: none" id="TGM13.2"></ul> <button id="open_TGTM13.1">TGTM13.1</button> - <ul style="display: none;" id="TGTM13.1"></ul> - </div> + <ul style="display: none" id="TGTM13.1"></ul> + </main> <script src="script.js" charset="utf-8"></script> </body> |