aboutsummaryrefslogtreecommitdiffstats
path: root/templates/registration/password_reset_form.html
blob: d0d625061462caab96637b249faab3750f3ae955 (plain)
1
2
3
4
5
6
7
8
9
10
{% extends 'registration/base_simple.html' %}

{% block content %}
  <h3>Forgot password</h3>
  <form method="post">
    {% csrf_token %}
    {{ form.as_p }}
    <button type="submit">Submit</button>
  </form>
{% endblock %}