src/Form/RegistrationFormType.php line 16

  1. <?php
  2. namespace App\Form;
  3. use App\Entity\User;
  4. use Symfony\Component\Form\AbstractType;
  5. use Symfony\Component\Form\FormBuilderInterface;
  6. use Symfony\Component\Validator\Constraints\Regex;
  7. use Symfony\Component\Validator\Constraints\IsTrue;
  8. use Symfony\Component\Validator\Constraints\Length;
  9. use Symfony\Component\Validator\Constraints\NotBlank;
  10. use Symfony\Component\OptionsResolver\OptionsResolver;
  11. use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
  12. use Symfony\Component\Form\Extension\Core\Type\PasswordType;
  13. class RegistrationFormType extends AbstractType
  14. {
  15.     public function buildForm(FormBuilderInterface $builder, array $options): void
  16.     {
  17.         $builder
  18.             ->add('email')
  19.             ->add('nom')
  20.             ->add('prenom')
  21.             ->add('profession')
  22.             ->add('agreeTerms'CheckboxType::class, [
  23.                 'mapped' => false,
  24.                 'constraints' => [
  25.                     new IsTrue([
  26.                         'message' => 'You should agree to our terms.',
  27.                     ]),
  28.                 ],
  29.             ])
  30.             ->add('plainPassword'PasswordType::class, [
  31.                 'mapped' => false,
  32.                 'attr' => ['autocomplete' => 'new-password'],
  33.                 'constraints' => [
  34.                     new NotBlank([
  35.                         'message' => 'Le mot de passe ne peut être vide',
  36.                     ]),
  37.                     new Length([
  38.                         'min' => 8,
  39.                         'minMessage' => 'Votre mot de passe doit comporter au moins {{ limit }} caractères',
  40.                         // max length allowed by Symfony for security reasons
  41.                         'max' => 4096,
  42.                     ]),
  43.                     new Regex([          
  44.                         'pattern' => "/(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.*[ !\"\#\$%&\'\(\)*+,\-.\/:;<=>?@[\\^\]_`\{|\}~])^.{0,4096}$/",     
  45.                         'message' => 'Votre mot de passe doit comporter au moins une minuscule, une majuscule, un chiffre et un caractère spécial ',
  46.                      ]),
  47.                 ],
  48.             ])
  49.         ;
  50.     }
  51.     public function configureOptions(OptionsResolver $resolver): void
  52.     {
  53.         $resolver->setDefaults([
  54.             'data_class' => User::class,
  55.         ]);
  56.     }
  57. }