summaryrefslogtreecommitdiff
path: root/openstack-dashboard/dashboard/templates/registration/password_change_form.html
diff options
context:
space:
mode:
Diffstat (limited to 'openstack-dashboard/dashboard/templates/registration/password_change_form.html')
-rw-r--r--openstack-dashboard/dashboard/templates/registration/password_change_form.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/openstack-dashboard/dashboard/templates/registration/password_change_form.html b/openstack-dashboard/dashboard/templates/registration/password_change_form.html
new file mode 100644
index 00000000..70bf79c2
--- /dev/null
+++ b/openstack-dashboard/dashboard/templates/registration/password_change_form.html
@@ -0,0 +1,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 %}