{% extends 'base.html.twig' %} {% block title %}Inscription{% endblock %} {% block body %}

🖋️ Inscription

{{ form_start(registrationForm) }}
{{ form_label(registrationForm.pseudo, 'Pseudo') }} {{ form_widget(registrationForm.pseudo, { 'attr': {'class': 'w-full border border-gray-300 rounded px-4 py-2'} }) }} {{ form_errors(registrationForm.pseudo) }}
{{ form_label(registrationForm.email, 'Email') }} {{ form_widget(registrationForm.email, { 'attr': {'class': 'w-full border border-gray-300 rounded px-4 py-2'} }) }} {{ form_errors(registrationForm.email) }}
{{ form_label(registrationForm.plainPassword, 'Mot de passe') }} {{ form_widget(registrationForm.plainPassword, { 'attr': {'class': 'w-full border border-gray-300 rounded px-4 py-2'} }) }} {{ form_errors(registrationForm.plainPassword) }}
{{ form_widget(registrationForm.agreeTerms) }} {{ form_label(registrationForm.agreeTerms) }} {{ form_errors(registrationForm.agreeTerms) }}
🔒 Votre mot de passe doit contenir au minimum :
  • 8 caractères
  • Une majuscule
  • Une minuscule
  • Un chiffre
{{ form_end(registrationForm) }}
Déjà inscrit ? Se connecter
{% endblock %}