{% extends 'base.html.twig' %} {% trans_default_domain 'admin' %} {% block title %}Log in!{% endblock %} {% block stylesheets %} {% endblock %} {% block header %} {% endblock %} {% block body %}
{% if error %}
{{ error.messageKey|trans(error.messageData, 'security') }}
{% endif %} {% if app.user %}
You are logged in as {{ app.user.username }}
{% else %}

{{ 'form.login.label.headline'|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
#} {% endif %}
{% endblock %} {% block footer %} {% endblock %}