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