{% extends 'etl/base.twig' %} {% block title %}Mon Compte{% endblock %} {% block body %}
{# HEADER #}

Mon Compte

Gérez vos informations de connexion

{# FORMULAIRE #}

Changer de mot de passe

{{ form_start(form, {'attr': {'class': 'space-y-6'}}) }}
{{ form_label(form.password.first, 'Nouveau mot de passe', {'label_attr': {'class': 'block text-[10px] font-black text-slate-400 uppercase tracking-widest mb-1.5 ml-1'}}) }} {{ form_widget(form.password.first, {'attr': {'class': 'w-full bg-slate-50 border border-slate-200 rounded-2xl px-5 py-4 text-sm font-bold text-slate-800 outline-none focus:border-blue-500 focus:ring-4 focus:ring-blue-500/10 transition-all placeholder:text-slate-300'}}) }}
{{ form_errors(form.password.first) }}
{{ form_label(form.password.second, 'Confirmer le mot de passe', {'label_attr': {'class': 'block text-[10px] font-black text-slate-400 uppercase tracking-widest mb-1.5 ml-1'}}) }} {{ form_widget(form.password.second, {'attr': {'class': 'w-full bg-slate-50 border border-slate-200 rounded-2xl px-5 py-4 text-sm font-bold text-slate-800 outline-none focus:border-blue-500 focus:ring-4 focus:ring-blue-500/10 transition-all placeholder:text-slate-300'}}) }}
{{ form_errors(form.password.second) }}
{{ form_end(form) }}
{# RETOUR #}
Retour au tableau de bord
{% endblock %}