summaryrefslogtreecommitdiff
path: root/openstack-dashboard/dashboard/templates/registration/password_change_form.html
blob: 70bf79c285c2e783d85d227a964e0579a9e59d4c (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 %}Change Password{% endblock %}

{% block content %}

<div id="page_head">
  <h1>Change Password</h1>
  <p id="page_description">To change your password, complete the form below.</p>
</div>

<div id="home_login" class="block reset">
  <h3>Change Password</h3>
  <form action="" method="post">
    <fieldset>
      {% csrf_token %}
      {{ form.as_p }}
      <input id="bnt_set_password" type="submit" value="Set my password" />
    </fieldset>
  </form>
</div>
{% endblock %}