3 namespace Rapsys\UserBundle\Form
; 
   5 use Symfony\Component\Form\AbstractType
; 
   6 use Symfony\Component\Form\FormBuilderInterface
; 
   7 use Symfony\Component\OptionsResolver\OptionsResolver
; 
   8 use Symfony\Component\Form\Extension\Core\Type\RepeatedType
; 
   9 use Symfony\Component\Form\Extension\Core\Type\PasswordType
; 
  10 use Symfony\Component\Form\Extension\Core\Type\SubmitType
; 
  11 use Symfony\Component\Validator\Constraints\NotBlank
; 
  13 class RecoverMailType 
extends AbstractType 
{ 
  17         public function buildForm(FormBuilderInterface 
$builder, array $options) { 
  19                         ->add('password', RepeatedType
::class, ['type' => PasswordType
::class, 'invalid_message' => 'The password and confirmation must match', 'first_options' => ['attr' => ['placeholder' => 'Your password'], 'label' => 'Password'], 'second_options' => ['attr' => ['placeholder' => 'Your password confirmation'], 'label' => 'Confirm password'], 'options' => ['constraints' => [new NotBlank(['message' => 'Please provide your password'])]]]) 
  20                         ->add('submit', SubmitType
::class, ['label' => 'Send', 'attr' => ['class' => 'submit']]); 
  26         public function configureOptions(OptionsResolver 
$resolver) { 
  27                 $resolver->setDefaults(['error_bubbling' => true]); 
  33         public function getName() { 
  34                 return 'rapsys_user_recover_mail';