summaryrefslogtreecommitdiff
path: root/templates/registration/password_reset_confirm.html
blob: 7e1e2f1eaaf9c24e546eea869ef7735effb62e8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{% extends "base.html" %}

{% block title %}Password reset confirmation{% endblock %}
{% block heading %}Password reset confirmation{% endblock %}

{% block body %}

{% if validlink %}
<p>Your username, in case you've forgotten: {{ form.user.get_username }}</p>
<p>Please enter your new password twice so we can verify you typed it in
correctly</p>

<form method="post">
{% csrf_token %}

<table class="form passwordform">

{% if form.errors %}
 <tr>
  <td colspan="2" class="error">Please correct the errors below.</p>
 </tr>
{% endif %}


{% for field in form %}
  <tr>
   <td>{{ field.label_tag }}</td>
   <td>
    {{ field.errors }}
    {{ field }}
{% if field.help_text %}
    <div class="help_text"/>{{ field.help_text }}</div>
{% endif %}
   </td>
  </tr>
{% endfor %}

 <tr>
  <td colspan="2">
   <input type="submit" value="Set my password" class="default" />
  </td>
 </tr>

</table>

</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 %}