login.html 414 B

123456789101112131415
  1. {% extends "base.html" %}
  2. {% block main %}
  3. <h1> Sign in </h1>
  4. <form id="auth-form" action="" method="post">
  5. <label for="username">Username</label>
  6. <input type="text" name="username" id="username">
  7. <label for="password">Password</label>
  8. <input type="password" name="password" id="password">
  9. <input type="submit" class="button" name="signin" value="Sign in">
  10. {% module xsrf_form_html() %}
  11. </form>
  12. {% end %}