<?php
namespace App\Form;
use App\Entity\User;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\EmailType;
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
use Symfony\Component\Form\Extension\Core\Type\PasswordType;
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
use Symfony\Component\Validator\Constraints\Email;
use Symfony\Component\Validator\Constraints\IsTrue;
use Symfony\Component\Validator\Constraints\Length;
use Symfony\Component\Validator\Constraints\NotBlank;
//use VictorPrdh\RecaptchaBundle\Form\ReCaptchaType;
use Gregwar\CaptchaBundle\Type\CaptchaType;
class RegistrationFormType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options): void
{
$builder
->add('email', EmailType::class, [
'constraints' => [
new Email(),
new NotBlank(),
],
'label' => false,
'attr' => [
'placeholder' => 'Adresse mail'
]
])
->add('username', TextType::class, [
'label' => false,
'attr' => [
'placeholder' => 'Utilisateur'
]
])
->add('plainPassword', PasswordType::class, [
// instead of being set onto the object directly,
// this is read and encoded in the controller
'mapped' => false,
'label' => false,
'attr' => [
'autocomplete' => 'new-password',
'placeholder' => 'Mot de passe'
],
'constraints' => [
new NotBlank([
'message' => 'Please enter a password',
]),
new Length([
'min' => 6,
'minMessage' => 'Your password should be at least {{ limit }} characters',
// max length allowed by Symfony for security reasons
'max' => 4096,
]),
],
])
->add('plainPasswordConfirm', PasswordType::class, [
// instead of being set onto the object directly,
// this is read and encoded in the controller
'mapped' => false,
'label' => false,
'attr' => [
'autocomplete' => 'new-password-confirm',
'placeholder' => 'Confirmer mot de passe'
],
'constraints' => [
new NotBlank([
'message' => 'Please enter a password',
]),
new Length([
'min' => 6,
'minMessage' => 'Your password should be at least {{ limit }} characters',
// max length allowed by Symfony for security reasons
'max' => 4096,
]),
],
])
/*->add('recaptcha', ReCaptchaType::class)
->add('save', SubmitType::class, [
'label' => false,
])*/
->add('captcha', CaptchaType::class, array(
'width' => 200,
'height' => 50,
'length' => 6,
))
->add('save', SubmitType::class, [
'label' => false,
])
;
}
public function configureOptions(OptionsResolver $resolver): void
{
$resolver->setDefaults([
'data_class' => User::class,
]);
}
}