summaryrefslogtreecommitdiff
path: root/yaksh/templates/registration/password_reset_confirm.html
diff options
context:
space:
mode:
Diffstat (limited to 'yaksh/templates/registration/password_reset_confirm.html')
-rw-r--r--yaksh/templates/registration/password_reset_confirm.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/yaksh/templates/registration/password_reset_confirm.html b/yaksh/templates/registration/password_reset_confirm.html
new file mode 100644
index 0000000..1b0a1b7
--- /dev/null
+++ b/yaksh/templates/registration/password_reset_confirm.html
@@ -0,0 +1,15 @@
+{% extends "base.html" %}
+{% block pagetitle %}Reset Password{% endblock %}
+
+{% block content %}
+ {% if validlink %}
+ <p>Please enter your new password twice so we can verify you typed it in correctly</p>.
+ <form method="post">
+ {% csrf_token %}
+ {{ form.as_p }}
+ <button class= "btn" type="submit">Submit</button>
+ </form>
+ {% else %}
+ <p>This reset link is no longer valid!</p>
+ {% endif %}
+{% endblock %}