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.

25 lines
590 B

  1. {% extends "base_auth.html" %}
  2. {% block content_auth %}
  3. {% if validlink %}
  4. <div class="card-content">
  5. <div style="text-align:center;font-size:1.5em">
  6. <h2>Change password</h2>
  7. </div>
  8. <form method="post">
  9. {% csrf_token %}
  10. {{ form.as_p }}
  11. <div style="text-align:center">
  12. <button type="submit" class="button is-link">Change password</button>
  13. </div>
  14. </form>
  15. </div>
  16. {% else %}
  17. <div class="card-content">
  18. The password reset link was invalid, possibly because it has already been used.
  19. Please request a new password reset.
  20. </div>
  21. {% endif %}
  22. {% endblock %}