{% extends "base.html" %} {% block title %}Change password{% endblock %} {% block content %} {% if ok -%}

Password updated.

Click here to continue.
{% else %}
{% if error -%}
{%- if error == auth.ERROR_PASSW_CURRENT -%} Wrong current password. {%- elif error == auth.ERROR_PASSW_TOO_SHORT -%} The password is too short
(must be at least {{ auth.password_minlen }} chars long). {%- elif error == auth.ERROR_PASSW_TOO_LONG -%} The password is too long
(must be at most {{ auth.password_maxlen }} chars long). {%- elif error == auth.ERROR_PASSW_MISMATCH -%} The password doesn't match the confirmation. {%- endif -%}
{%- endif %}

Reset password

{% if manual -%}
{%- endif %}
Cancel
{%- endif %} {% endblock %}