{% extends 'base.html.twig' %} {% block title %}{{ 'btn.login'|trans }}{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %} {% block body %}
{% if error %}
{{ error.messageKey|trans(error.messageData, 'security') }}
{% endif %} {% if app.user %}
{{ 'security.logged_in_as'|trans }} {{ app.user.userIdentifier }}, {{ 'btn.logout'|trans }}
{% endif %}

{{ "title.login"|trans }}

{# 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 #}
{{ "btn.forgotPwd"|trans }}

{{ 'social.or_connect'|trans }}

{{ "btn.register"|trans }} {{ "btn.login"|trans }}
{% endblock %}