{% extends "account/base.html" %}{% load i18n jquerymobile_tags %} {% block head_title %}{% trans "Change Password" %}{% endblock %} {% block body %}

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

{% if token_fail %}{% url acct_passwd_reset 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 %}
{% csrf_token %}
{{ form|as_jquerymobile }}
{% else %}

Your password is now changed.

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