{% extends "base.html" %} {% block title %} Reset Password {% endblock %} {% block content %}

{% if token_fail %}Bad Token{% else %}Reset Password{% endif %}

{% if token_fail %} {% url 'account_reset_password' as passwd_reset_url %} {% else %} {% if form %}
{% csrf_token %} {% include "account/snippets/change_password.html" %}
{% else %}

Your password is now changed.

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