{% extends 'base.html.twig' %} {% block title %}Créer un compte — Bubul{% endblock %} {% block show_sidebar %}false{% endblock %} {% block meta_robots %}noindex, nofollow{% endblock %} {% block body %} {% embed '_organisms/step-layout/step-layout.html.twig' with { backUrl: path('app_login'), backText: 'Déjà un compte ?', backAction: 'Se connecter' } %} {% block heading %}

Bienvenue sur Bubul !

Commençons — votre adresse email.

{% endblock %} {% block card %} {% if error is defined and error %}
{{ error }}
{% endif %}
{% include '_atoms/form/input.html.twig' with { type: 'email', name: 'email', id: 'email', required: true, placeholder: 'vous@exemple.fr', value: email ?? '', icon: 'mail', attr: {'autofocus': 'autofocus'} } only %}
{% include '_atoms/button/button.html.twig' with { label: 'Continuer', type: 'submit', variant: 'primary', width: 'full' } only %}
{% endblock %} {% endembed %} {% endblock %}