{% extends 'base.html.twig' %} {% block title %}Votre prénom — Bubul{% endblock %} {% block show_sidebar %}false{% endblock %} {% block meta_robots %}noindex, nofollow{% endblock %} {% block body %} {% embed '_organisms/step-layout/step-layout.html.twig' %} {% block heading %}

Comment devons-nous vous appeler ?

On préfère s'adresser à vous par votre prénom.

{% endblock %} {% block card %} {% if error is defined and error %}
{{ error }}
{% endif %}
{% include '_atoms/form/input.html.twig' with { type: 'text', label: 'Prénom', name: 'first_name', id: 'first_name', required: true, placeholder: 'ex : Marie', value: first_name ?? '', icon: 'user', attr: {'autofocus': 'autofocus'} } only %}
{% include '_atoms/form/input.html.twig' with { type: 'text', label: 'Nom', name: 'last_name', id: 'last_name', required: true, placeholder: 'ex : Dupont', value: last_name ?? '', icon: 'user' } only %}
{% include '_atoms/button/button.html.twig' with { label: 'Continuer', type: 'submit', variant: 'primary', width: 'full' } only %}
{% endblock %} {% endembed %} {% endblock %}