{% extends 'base.html.twig' %} {% block title %}Se Connecter{% endblock %} {% block content %}
{% if error %}
{{ error.messageKey|trans(error.messageData, 'security') }}
{% endif %} {% for message in app.flashes('notice')%}
{{ message }}
{% endfor %} {% if app.user %}
You are logged in as {{ app.user.username }}, Logout
{% endif %}

Merci de vous connecter

{# 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
#}

Mot de passe oublié ?

Ou souhaitez-vous créer un compte

{% endblock %}