id_v1_login.tmpl 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Login</title>
  5. <link rel="stylesheet" text="text/css" href="/static/style.css">
  6. </head>
  7. <body>
  8. <div>
  9. <div class="login-box">
  10. <h1>Login</h1>
  11. <form action="login" method="POST">
  12. <div class="login-content">
  13. <div class="spacer">&nbsp;
  14. {{ #each error_msg }}
  15. <div class="error-msg">{{ this }}</div>
  16. {{ /each }}
  17. </div>
  18. <div class="login-challenge">
  19. {{{ challenge }}}
  20. <input type="submit" value=">" />
  21. </div>
  22. <div class="spacer">&nbsp;</div>
  23. <input type="submit" name="reset" value="Start over" />
  24. </div>
  25. </form>
  26. </div>
  27. <div class="footer">
  28. Copyright &copy; Kestrel 2022. Released under the terms of the 4-clause BSD license.
  29. </div>
  30. </div>
  31. </body>
  32. </html>