{# The first login page. This page is displayed to users who do not have set a password yet. #} {% extends theme('base.html') %} {% import 'macro/form.html' as fui %} {% block content %}
{% block header %}

{% if logo_url %} {% endif %}
{% trans %}First login{% endtrans %}

{% endblock %} {% block message %}
{% trans %} It seems this is the first time you are logging here. In order to finalize your account configuration, you need to set a password to your account. We will send you an email containing a link that will allow you to set a password. Please click on the "Send the initialization email" button below to send the email. {% endtrans %}
{% endblock %}
{% call fui.render_form(form) %} {% block buttons %}
{{ _("Login page") }}
{% endblock %} {% endcall %}
{% endblock %}