aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/templates/account/password_reset_done.html
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-01-19 15:57:06 +0000
committerMatthew Lemon <lemon@matthewlemon.com>2020-01-19 15:57:06 +0000
commit9d76a3c52b8310726ec09e0262813f0438c21df6 (patch)
tree4acf47dce6c3aa75f8ad7c5cb56fe6486c2d64a7 /ctrack/templates/account/password_reset_done.html
init commit - from cookiecutter
Diffstat (limited to 'ctrack/templates/account/password_reset_done.html')
-rw-r--r--ctrack/templates/account/password_reset_done.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/ctrack/templates/account/password_reset_done.html b/ctrack/templates/account/password_reset_done.html
new file mode 100644
index 0000000..c59534a
--- /dev/null
+++ b/ctrack/templates/account/password_reset_done.html
@@ -0,0 +1,17 @@
+{% extends "account/base.html" %}
+
+{% load i18n %}
+{% load account %}
+
+{% block head_title %}{% trans "Password Reset" %}{% endblock %}
+
+{% block inner %}
+ <h1>{% trans "Password Reset" %}</h1>
+
+ {% if user.is_authenticated %}
+ {% include "account/snippets/already_logged_in.html" %}
+ {% endif %}
+
+ <p>{% blocktrans %}We have sent you an e-mail. Please contact us if you do not receive it within a few minutes.{% endblocktrans %}</p>
+{% endblock %}
+