summaryrefslogtreecommitdiff
path: root/baserock_openid_provider/templates/registration/password_reset_confirm.html
diff options
context:
space:
mode:
authorPedro Alvarez Piedehierro <palvarez89@gmail.com>2017-10-04 14:40:01 +0000
committerPedro Alvarez Piedehierro <palvarez89@gmail.com>2017-10-04 14:40:01 +0000
commit976172c6fc9513395f09909a4ac9392cf00c1b63 (patch)
tree0a560a8d3f43f9500a683c978d8f4921c94653de /baserock_openid_provider/templates/registration/password_reset_confirm.html
parent9d0b282cc4d2eac1f881ce6ceb311388518672dd (diff)
parent8f5352e8f0ccbb4ba358125ffb76af72580a814e (diff)
downloadinfrastructure-976172c6fc9513395f09909a4ac9392cf00c1b63.tar.gz
Merge branch 'kill-obsolete' into 'master'
Kill obsolete system definitions See merge request baserock/infrastructure!8
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 %}