{% extends 'base.html.twig' %} {% block title %}Bubul - Activer mon compte{% endblock %} {% block show_sidebar %}false{% endblock %} {% block meta_robots %}noindex, nofollow{% endblock %} {% block body_class %}{% endblock %} {% block meta_description %}Activez votre compte Bubul et choisissez votre mot de passe.{% endblock %} {% block body %} {% embed '_organisms/auth-layout/auth-layout.html.twig' with { logoVariant: 'soft', logoSize: '2xl' } %} {% block content %}
{# ===== Lien retour ===== #}
{% include '_atoms/link/link.html.twig' with { label: 'Retour à la connexion', href: path('app_login'), variant: 'muted', icon: 'arrow-left', iconPosition: 'left', iconAnimate: true, size: 'sm' } only %}
{# ===== Titre ===== #}

Bienvenue, {{ user.firstName }} !

Choisissez un mot de passe pour activer votre compte {{ user.email }}.

{# ===== Formulaire ===== #}
{% include '_atoms/form/input.html.twig' with { type: 'password', name: 'password', id: 'password', icon: 'lock', iconPosition: 'left', placeholder: 'Mot de passe', hint: 'Au moins ' ~ constant('App\\Config\\AppLimits::PASSWORD_MIN_LENGTH') ~ ' caractères', required: true, attr: { autofocus: 'autofocus' } } only %} {% include '_atoms/form/input.html.twig' with { type: 'password', name: 'password_confirm', id: 'password_confirm', icon: 'key', iconPosition: 'left', placeholder: 'Confirmer le mot de passe', required: true } only %}
{% include '_atoms/button/button.html.twig' with { label: 'Activer mon compte', type: 'submit', variant: 'primary', size: 'lg', width: 'full', radius: 'lg' } only %}
{% endblock %} {% endembed %} {% endblock %}