{% extends 'base.html.twig' %} {% block title %}Créez votre mot de passe — 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 %}

Choisissez un mot de passe

Seul vous devez pouvoir accéder à votre bulle.

{% endblock %} {% block card %} {% if error is defined and error %}
{{ error }}
{% endif %}
{% include '_atoms/form/input.html.twig' with { type: 'password', label: 'Mot de passe', name: 'password', id: 'password', required: true, icon: 'lock', attr: { 'autofocus': 'autofocus', 'data-password-strength-target': 'input', 'data-action': 'input->password-strength#onInput' } } only %}

{% include '_atoms/form/input.html.twig' with { type: 'password', label: 'Confirmation', name: 'password_confirm', id: 'password_confirm', required: true, icon: 'lock' } only %}
{% include '_atoms/button/button.html.twig' with { label: 'Continuer', type: 'submit', variant: 'primary', width: 'full' } only %}
{% endblock %} {% endembed %} {% endblock %}