{% extends "base.html" %} {% load i18n %} {% block style %} {% endblock %} {% block content %}

{% if token_fail %} {% trans "Bad Token" %} {% else %} {% trans "Change Password" %} {% endif %}

{% if token_fail %} {% url 'account_reset_password' as passwd_reset_url %}

The password reset link was invalid, possibly because it has already been used. Try again.

{% else %} {% if form %}
{% csrf_token %}
{{ form.password1.errors }}
{{ form.password2.errors }}
{% else %}

{% trans 'Your password is now changed!' %}

{% endif %} {% endif %}
{% endblock %}