aboutsummaryrefslogtreecommitdiffstats
path: root/templates/registration/password_reset_confirm.html
blob: 6838eb8c5e5727b602115bb7390c36210b5e815a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends 'registration/base_simple.html' %}

{% block content %}
  {% if validlink %}
    <h3>Change password</h3>
    <form method="post">
      {% csrf_token %}
      {{ form.as_p }}
      <button type="submit">Change password</button>
    </form>
  {% else %}
    <p>
      The password reset link was invalid, possibly because it has already been used.
      Please request a new password reset.
    </p>
  {% endif %}
{% endblock %}