You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
670 B
14 lines
670 B
{% 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 %}
|
|
|