aboutsummaryrefslogtreecommitdiff
path: root/templates/blog/resetpass.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/blog/resetpass.html')
-rw-r--r--templates/blog/resetpass.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/templates/blog/resetpass.html b/templates/blog/resetpass.html
new file mode 100644
index 00000000..7dbdab05
--- /dev/null
+++ b/templates/blog/resetpass.html
@@ -0,0 +1,24 @@
+{% extends 'blog/partials/base.html' %} {% block content %}
+<p>
+ Forgot your password? No problem! Just enter your email address below, (the
+ email you registered with) and I will send you a link to reset your password.
+</p>
+<hr />
+<form method="post">
+ <input
+ type="hidden"
+ name="csrfmiddlewaretoken"
+ value="{{ csrf_token }}"
+ style="display: none"
+ />
+ <table id="resetpass_form">
+ {{ form.as_table }}
+ </table>
+ <br />
+ <input type="submit" value="Reset password" class="button button-special" />
+</form>
+<br /><br />
+<p><i>Anonymous users cannot reset their password.</i></p>
+{% for message in messages %} {% if 'passwordReset' in message.tags %}
+<p><small class="success">{{ message.message }}</small></p>
+{% endif %} {% endfor %} {% endblock content %}