{% extends "base.html" %} {% load i18n %} {% block title %} {% if set_password %} {% trans 'Set password' %} {% else %} {% trans 'Change password' %} {% endif %} {% endblock %} {% load breadcrumbs %} {% block breadcrumbs %} {{ block.super }} {% if set_password %} {% breadcrumb_url 'Set password' auth_password_change %} {% else %} {% breadcrumb_url 'Change password' auth_password_change %} {% endif %} {% endblock %} {% block content %} {% if set_password %}
{% trans "Please enter your new password twice so we can verify you typed it in correctly." %}
{% else %}{% 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." %}
{% endif %} {% endblock %}