{% extends "base.html" %} {% block content %}

{{ _('Change Password') }}

{% if current_user.password_change_required %} {{ _('You must change your password before continuing.') }} {% else %} {{ _('Update your password.') }} {% endif %}

{% if current_user.has_password %}
{% endif %}

{{ _('Password must be at least 8 characters long.') }}

{% if not current_user.password_change_required %} {{ _('Cancel') }} {% endif %}
{% endblock %}