summaryrefslogtreecommitdiff
path: root/frontend/templates/pas
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/templates/pas')
-rw-r--r--frontend/templates/pas14
1 files changed, 14 insertions, 0 deletions
diff --git a/frontend/templates/pas b/frontend/templates/pas
new file mode 100644
index 0000000..0fb5d5c
--- /dev/null
+++ b/frontend/templates/pas
@@ -0,0 +1,14 @@
+{% extends "password_reset/base.html" %}{% load i18n %}{% load url from future %}
+
+{% block content %}
+ {% if invalid %}{% url "password_reset_recover" as recovery_url %}
+ <p>{% blocktrans %}Sorry, this password reset link is invalid. You can still <a href="{{ recovery_url }}">request a new one</a>.{% endblocktrans %}</p>
+ {% else %}
+ <p>{% blocktrans %}Hi, <strong>{{ username }}</strong>. Please choose your new password.{% endblocktrans %}</p>
+ <form method="post" action="{% url "password_reset_reset" token %}">
+ {% csrf_token %}
+ {{ form.as_p }}
+ <p><input type="submit" value="{% trans "Set new password" %}"></p>
+ </form>
+ {% endif %}
+{% endblock %}