{% extends 'account/base.html' %} {% load static %} {% load i18n %} {% load crispy_forms_tags %} {% block title %}{% trans "Change Password" %}{% endblock title %} {% block content %}
{% if token_fail %}{% trans "Bad Token" %}{% else %}{% trans "Change Password" %}{% endif %}
{% if token_fail %} {% url 'account_reset_password' as passwd_reset_url %}

{% blocktrans %}The password reset link was invalid, possibly because it has already been used. Please request a new password reset.{% endblocktrans %}

{% else %} {% if form %}
{% for message in messages %} {% endfor %} {% if field.help_text %} {% endif %} {% csrf_token %}
{{ form.password1|as_crispy_field }}
{{ form.password2|as_crispy_field }}
{% else %}

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

{% endif %} {% endif %}

Back to the homepage ? Home

{% endblock content %}