id_v1_login.tmpl 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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="content-box">
  10. <h1>Login</h1>
  11. <form action="login" method="POST">
  12. <table class="content-table">
  13. {{ #each error_msg }}
  14. <tr>
  15. <td colspan="3">
  16. <div class="error-msg">{{ this }}</div>
  17. </td>
  18. </tr>
  19. {{ /each }}
  20. <tr>
  21. {{{ challenge }}}
  22. <td>
  23. <input type="submit" value=">" />
  24. </td>
  25. </tr>
  26. <tr>
  27. <td colspan="3">
  28. <input type="hidden" name="redirect" value="{{ redirect }}" />
  29. <input type="submit" name="reset" value="Start over" />
  30. </td>
  31. </tr>
  32. </table>
  33. </form>
  34. </div>
  35. <div class="footer">
  36. Copyright &copy; Kestrel 2023. Released under the terms of the 4-clause BSD license.
  37. </div>
  38. </div>
  39. </body>
  40. </html>