diff options
author | LarsVomMars | 2020-10-04 00:57:49 +0200 |
---|---|---|
committer | LarsVomMars | 2020-10-04 00:57:49 +0200 |
commit | 78a60c48041673005900f6aa5cebcad0f92e5db3 (patch) | |
tree | 947518c1c0e1197b6ffec06e13041dc4dec6872b | |
parent | 53b84f7ede1ad26e5111cd6da9c13042d98a290b (diff) |
Nav
-rw-r--r-- | auth/public/change.html | 4 | ||||
-rw-r--r-- | overview/public/index.html | 4 | ||||
-rw-r--r-- | overview/public/style.css | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/auth/public/change.html b/auth/public/change.html index ab2fd5c..7e55391 100644 --- a/auth/public/change.html +++ b/auth/public/change.html @@ -14,6 +14,10 @@ <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" id="change-form" action="api/password" method="POST"> <fieldset> <legend>Login</legend> diff --git a/overview/public/index.html b/overview/public/index.html index 98aa670..ba3596f 100644 --- a/overview/public/index.html +++ b/overview/public/index.html @@ -14,6 +14,10 @@ <title>Home</title> </head> <body> + <div class="pure-menu pure-menu-horizontal"> + <a href="/auth/change.html" class="pure-menu-item pure-menu-link">Passwort ändern</a> + <a href="/auth/api/logout" class="pure-menu-item pure-menu-link">Logout</a> + </div> <div class="card"> <h2>Hallo, liebe RBS-Schüler*innen!</h2> <p lang="de"> diff --git a/overview/public/style.css b/overview/public/style.css index e44af0f..ab38722 100644 --- a/overview/public/style.css +++ b/overview/public/style.css @@ -20,6 +20,10 @@ body { background: white; } +div { + background: white; +} + @media only screen and (max-width: 600px) { .card { width: calc(100% - 50px); |