login.html 718 B

123456789101112131415161718192021222324
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/meshki/2.3.0/css/meshki.min.css">
  5. <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/meshki/2.3.0/js/meshki.min.js"></script>
  6. </head>
  7. <body>
  8. <div class="content">
  9. {{#message}}
  10. <h5>{{message}}</h5>
  11. {{/message}}
  12. <h3>Log in</h3>
  13. <form action="{{app_root}}/login" method="POST">
  14. <input name="username" placeholder="Your username" type="text"><br>
  15. <input name="password" placeholder="Your secret password" type="password">
  16. <br>
  17. <input type="submit" value="Log in" class="button orange medium">
  18. </form>
  19. </div>
  20. </body>
  21. </html>