You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
463 B

10 years ago
  1. {% extends "base.html" %}
  2. {% load bootstrap3 %}
  3. {% block content %}
  4. <h1>Log In</h1>
  5. <p>
  6. Please enter your email address.
  7. Next, we'll send you an email with log-in instructions!
  8. </p>
  9. <form method="post">
  10. {% csrf_token %}
  11. {% bootstrap_form form %}
  12. {% buttons %}
  13. <button type="submit" class="btn btn-primary">
  14. Submit
  15. </button>
  16. {% endbuttons %}
  17. </form>
  18. {% endblock %}