| 1 | <!doctype html> |
| 2 | <html lang="en"> |
| 3 | <head> |
| 4 | <meta charset="UTF-8" /> |
| 5 | <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 6 | <meta name="theme-color" content="#121113" /> |
| 7 | <link rel="stylesheet" href="/assets/darkmatter.css" /> |
| 8 | <link rel="stylesheet" href="/static/styles.css" /> |
| 9 | <link rel="apple-touch-icon" sizes="180x180" href="/static/apple-touch-icon.png" /> |
| 10 | <link rel="icon" type="image/png" sizes="32x32" href="/static/favicon-32x32.png" /> |
| 11 | <link rel="icon" type="image/png" sizes="16x16" href="/static/favicon-16x16.png" /> |
| 12 | <link rel="manifest" href="/static/site.webmanifest" /> |
| 13 | <title>Library | Login</title> |
| 14 | </head> |
| 15 | <body> |
| 16 | <a href="/" class="header"> |
| 17 | <h1>LIBRARY</h1> |
| 18 | </a> |
| 19 | {{if .Error}}<p class="error">{{.Error}}</p>{{end}} |
| 20 | <form class="admin-form" method="POST" action="/admin/login"> |
| 21 | <label for="password">Password</label> |
| 22 | <input type="password" id="password" name="password" required autofocus /> |
| 23 | <button type="submit">Login</button> |
| 24 | </form> |
| 25 | </body> |
| 26 | </html> |