{# Password forgotten page. This page displays a form asking for the email address of users who cannot remember their password. #} {% extends theme('base.html') %} {% import 'macro/form.html' as fui %} {%- block title -%} {%- trans -%}Forgotten password{%- endtrans -%} {%- endblock -%} {% block content %}
{% block header %}

{% if logo_url %} {% endif %}
{% trans %}Forgotten password{% endtrans %}

{% endblock %} {% block message %}
{% trans %} After this form is sent, if the email address or the login you provided exists, you will receive an email containing a link that will allow you to reset your password. {% endtrans %}
{% endblock %}
{% call fui.render_form(form) %} {% block fields %} {{ fui.render_field(form.login, icon="user") }} {% endblock %} {% block buttons %}
{% if features.has_registration %} {{ _("Create an account") }} {% endif %} {{ _("Login page") }}
{% endblock %} {% endcall %}
{% endblock %}