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

{% trans "Your user account has no password set for it because it was created with other service." context "set new password page" %}

{% trans "To set password for your account, you can use special secure form that will be available by special link valid only for your browser, for seven days or until your password is set." context "set new password page" %}

{% else %}

{% trans "Because user passwords are processed in an irreversible way before being saved to database, it is not possible for us to simply send you your password." context "forgotten password page" %}

{% trans "Instead, you can change your password using special secure form that will be available by special link valid only for your browser, for seven days or until your password is changed." context "forgotten password page" %}

{% endif %}

{% blocktrans trimmed context "forgotten password page" %} To receive this link, enter your account's e-mail address and press the "Send link" button. {% endblocktrans %}

{% endblock content %}