X-Git-Url: https://git.rapsys.eu/userbundle/blobdiff_plain/bab59a4b88a081a7a27a53b4559d74e63b68db92..ee0b2896d4f625a791c940e34aa7e5e5e56cbebb:/Form/RecoverType.php diff --git a/Form/RecoverType.php b/Form/RecoverType.php deleted file mode 100644 index 3c14599..0000000 --- a/Form/RecoverType.php +++ /dev/null @@ -1,36 +0,0 @@ -add('mail', EmailType::class, array('attr' => array('placeholder' => 'Your mail address'), 'constraints' => array(new NotBlank(array('message' => 'Please provide your mail')), new Email(array('message' => 'Your mail doesn\'t seems to be valid'))))) - ->add('submit', SubmitType::class, array('label' => 'Send', 'attr' => array('class' => 'submit'))); - } - - /** - * {@inheritdoc} - */ - public function configureOptions(OptionsResolver $resolver) { - $resolver->setDefaults(['error_bubbling' => true]); - } - - /** - * {@inheritdoc} - */ - public function getName() { - return 'rapsys_user_recover'; - } -}