{% extends theme('base.html') %} {% import 'macro/flask.html' as flask %} {% import 'macro/form.html' as fui %} {% block container %}
{% if logo_url %} {{ website_name }} {% else %} {% endif %}

{{ _("Sign in at %(website)s", website=website_name) }}
{% trans %}Manage your information and your authorizations{% endtrans %}

{{ flask.messages() }} {% call fui.render_form(form) %} {% block login_field scoped %}{{ fui.render_field(form.login, class="autofocus") }}{% endblock %} {% if "password" in form %} {% block password_field scoped %}{{ fui.render_field(form.password) }}{% endblock %} {% endif %}
{% if has_smtp and has_password_recovery %} {{ _("Forgotten password") }} {% endif %}
{% endcall %}
{% endblock %}