{% extends 'Signalement/layout.html.twig' %} {% trans_default_domain 'home' %} {% block body %}
{# Main content #}
{# Title and instructions #}

{{ 'Integration.login_happy'|trans }} 🥰

{{ 'Integration.login_code'|trans }}

{# Code verification form #} {{ form_start(form, {'attr': {'class': 'space-y-6'}}) }}
{{ form_widget(form.code, { 'attr': { 'placeholder': 'Integration.login_code_placeholder'|trans, } }) }}
{% for label, messages in app.flashes %} {% for message in messages %}

{{ message }}

{% endfor %} {% endfor %}
{{ form_end(form) }}
{% endblock %}