login.html 480 B

12345678910111213141516171819
  1. {% extends "base.html" %}
  2. {% block css %}
  3. <link rel="stylesheet" href="/css/login_register.css">
  4. {% end %}
  5. {% block main %}
  6. <h1>sign in</h1>
  7. <form action="" method="post">
  8. <label for="username">username</label>
  9. <input type="text" name="username" id="username">
  10. <label for="password">password</label>
  11. <input type="password" name="password" id="password">
  12. <input type="submit" class="button" name="signin" value="sign in">
  13. {% module xsrf_form_html() %}
  14. </form>
  15. {% end %}