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