password_reset.html 388 B

1234567891011121314
  1. {% extends '_base.html' %}
  2. {% load crispy_forms_tags %}
  3. {% block title %}Password Reset{% endblock %}
  4. {% block content %}
  5. <h2>Forgot your password? </h2>
  6. <form method="POST" action="{% url 'account_reset_password' %}" class="password_reset">
  7. {% csrf_token %}
  8. {{ form | crispy }}
  9. <button class="btn btn-primary" type="submit">Reset Password</button>
  10. </form>
  11. {% endblock content %}