summaryrefslogtreecommitdiff
path: root/openstack-dashboard/dashboard/templates/registration/password_reset_form.html
blob: 06461f1f5a42d1a9c0d9e486c803137d9404b795 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% extends "base.html" %}
{% block region %}{% endblock %}

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

{% block content %}

<div id="page_head">
  <h1>Reset Password</h1>
  <p id="page_description">Forgotten your password? Enter your e-mail address below, and we'll e-mail instructions for setting a new one.</p>
</div>

<div id="home_login" class="block reset">
  <h3>Reset Password</h3>
  <form action="" method="post">
    <fieldset>
      {% csrf_token %}
      {{ form.email.errors }}
      <p><label for="id_email">E-mail address:</label> {{ form.email }} <input id="btn_reset_password" type="submit" value="Reset Password" /></p>
    </fieldset>
  </form>
</div>
{% endblock %}