src/Form/CaptchaCusType.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Form;
  3. use App\Entity\Adresse;
  4. use Captcha\Bundle\CaptchaBundle\Form\Type\CaptchaType;
  5. use Symfony\Component\Form\AbstractType;
  6. use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
  7. use Symfony\Component\Form\Extension\Core\Type\DateType;
  8. use Symfony\Component\Form\Extension\Core\Type\SubmitType;
  9. use Symfony\Component\Form\FormBuilderInterface;
  10. use Symfony\Component\OptionsResolver\OptionsResolver;
  11. use Symfony\Component\Form\Extension\Core\Type\HiddenType;
  12. class CaptchaCusType extends AbstractType
  13. {
  14.     public function buildForm(FormBuilderInterface $builder, array $options)
  15.     {
  16.         $builder
  17.             ->add('captchaCode'CaptchaType::class, array(
  18.                 'captchaConfig' => 'ExampleCaptcha',
  19.                 'label' => 'Retype the characters from the picture'
  20.             ))
  21.         ;
  22.     }
  23. }