{% extends "registration/base.html" %} {% load crispy_forms_tags %} {% load i18n %} {% load url from future %} {% block title %}{% trans "Password Change" %}{% endblock title %} {% block page_main_title %}{% trans "Password Change" %}{% endblock page_main_title %} {% block content %}

{% trans "Please enter your old password, for security's sake, and then enter your new password twice so we can verify you typed it in correctly." %}

{% block form %}
{% csrf_token %} {% block form_inner %} {{ form|crispy }} {% endblock %} {% block form_actions %}
{% block form_actions_inner %} {% endblock form_actions_inner %}
{% endblock form_actions %}
{% endblock %} {% endblock content %}