12345678910111213141516171819202122232425262728293031323334 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>Login</title>
- <link rel="stylesheet" text="text/css" href="/static/style.css">
- </head>
- <body>
- <div>
- <div class="login-box">
- <h1>Login</h1>
-
- <form action="login" method="POST">
- <div class="login-content">
- <div class="spacer">
- {{ #each error_msg }}
- <div class="error-msg">{{ this }}</div>
- {{ /each }}
- </div>
- <div class="login-challenge">
- {{{ challenge }}}
- <input type="submit" value=">" />
- </div>
- <div class="spacer"> </div>
- <input type="submit" name="reset" value="Start over" />
- </div>
- </form>
- </div>
- <div class="footer">
- Copyright © Kestrel 2022. Released under the terms of the 4-clause BSD license.
- </div>
- </div>
- </body>
- </html>
|