id_v1_login.tmpl 1.0 KB

1234567891011121314151617181920212223242526272829303132
  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. </div>
  21. <div class="spacer">&nbsp;</div>
  22. </div>
  23. </form>
  24. </div>
  25. <div class="footer">
  26. Copyright &copy; Kestrel 2022. Released under the terms of the 4-clause BSD license.
  27. </div>
  28. </div>
  29. </body>
  30. </html>