{% extends 'base.html.twig' %} {% set displayFooter = true %} {% block title %}Log in!{% endblock %} {% block body %} {% set default_country = customParam('default_country') %} {% set showPswMaintenance = false %}
{% if error %}
{{ error.messageKey|trans(error.messageData, 'security') }}
{% endif %} {% if app.user %}
You are logged in as {{ app.user.username }}, {% trans %}menu.disconnect{% endtrans %}
{% endif %}
{% set websiteIdKey = ['2', '4', '8', '9', '10', '11', '12'] %} {% for key,value in customParam('find_my_data_website_id') %} {% if value in websiteIdKey %} {% set showPswMaintenance = true %} {% endif %} {% endfor %} {% if showPswMaintenance == true %}

{{'password_maintenance'|trans}}

{% endif %}
{# Uncomment this section and add a remember_me option below your firewall to activate remember me functionality. See https://symfony.com/doc/current/security/remember_me.html
#}
{% endblock %}