{% extends "registration/registration_base.html" %} {% load url from future %} {% load i18n %} {% block title %}{% trans "Password change" %}{% endblock %} {% block masthead %}

{% trans "Password change" %}

{% endblock %} {% block content %}

{% trans "Please enter your old password, then enter your new password twice." %}

{% csrf_token %} {{ form.non_field_errors }} {% for field in form %}
{{ field.errors }} {{ field.label_tag }} {{ field }}
{% endfor %}
{% trans "Reset password" %}
{% endblock %}