summaryrefslogtreecommitdiff
path: root/baserock_openid_provider/templates/registration/password_reset_confirm.html
diff options
context:
space:
mode:
Diffstat (limited to 'baserock_openid_provider/templates/registration/password_reset_confirm.html')
-rw-r--r--baserock_openid_provider/templates/registration/password_reset_confirm.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/baserock_openid_provider/templates/registration/password_reset_confirm.html b/baserock_openid_provider/templates/registration/password_reset_confirm.html
new file mode 100644
index 00000000..33bd276a
--- /dev/null
+++ b/baserock_openid_provider/templates/registration/password_reset_confirm.html
@@ -0,0 +1,21 @@
+{% extends "base.html" %}
+{% load i18n %}
+
+{% block content %}
+
+{% if validlink %}
+
+<form method="post" action=".">
+ {% csrf_token %}
+ {{ form.as_p }}
+
+ <input type="submit" value="{% trans 'Submit' %}" />
+</form>
+
+{% else %}
+
+<p>{% trans "Password reset failed" %}</p>
+
+{% endif %}
+
+{% endblock %}