summaryrefslogtreecommitdiff
path: root/dashboard/templates/registration/password_reset_confirm.html
blob: acd9af6e5223ac7fbf94ec383303c94c643bde34 (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
{% extends "base.html" %}
{% block region %}{% endblock %}

{% block title %}Reset Password{% endblock %}

{% block content %}
  <div id="page_head">
    <h2>Change your password below.</h2>
    <p id="page_description">To complete the reset of your password, fill out the form below.</p>
  </div>

  <div id="home_login" class="block reset">
    <h3>Reset Password</h3>
    <form action="" method="post">
      <fieldset>
        {% csrf_token %}
        {{ form.new_password1.errors }}
        <label for="id_new_password1">New Password:</label>{{form.new_password1 }}

        {{ form.new_password2.errors }}
        <label for="id_new_password2">Confirm Password:</label>{{ form.new_password2 }}
        <input id="bnt_set_password" type="submit" value="Set my password" />
      </fieldset>
    </form>
  </div>
{% endblock %}