{% extends "misago/base.html" %} {% load i18n %} {% block title %} {% if user.is_authenticated and not user.has_usable_assword %} {% trans "Set new password error" %} | {{ block.super }} {% else %} {% trans "Change forgotten password error" %} | {{ block.super }} {% endif %} {% endblock %} {% block content %}
info_outline
{% if user.is_authenticated and not user.has_usable_assword %}

{% trans "Can't set new password." %}

{% else %}

{% trans "Can't change forgotten password." %}

{% endif %}

{{ message }}

Request another password change link.

{% endblock content %}