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, 0 insertions, 21 deletions
diff --git a/baserock_openid_provider/templates/registration/password_reset_confirm.html b/baserock_openid_provider/templates/registration/password_reset_confirm.html
deleted file mode 100644
index 33bd276a..00000000
--- a/baserock_openid_provider/templates/registration/password_reset_confirm.html
+++ /dev/null
@@ -1,21 +0,0 @@
-{% 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 %}