X-Git-Url: https://git.rapsys.eu/userbundle/blobdiff_plain/bab59a4b88a081a7a27a53b4559d74e63b68db92..38bd80c2a2ee40000d4b088acc4a37533f616b05:/Form/RecoverType.php diff --git a/Form/RecoverType.php b/Form/RecoverType.php index 3c14599..62f1787 100644 --- a/Form/RecoverType.php +++ b/Form/RecoverType.php @@ -1,36 +1,37 @@ - + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ namespace Rapsys\UserBundle\Form; -use Symfony\Component\Form\AbstractType; -use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\OptionsResolver\OptionsResolver; -use Symfony\Component\Form\Extension\Core\Type\PasswordType; -use Symfony\Component\Form\Extension\Core\Type\EmailType; -use Symfony\Component\Form\Extension\Core\Type\SubmitType; -use Symfony\Component\Validator\Constraints\Email; -use Symfony\Component\Validator\Constraints\NotBlank; -class RecoverType extends AbstractType { +/** + * {@inheritdoc} + */ +class RecoverType extends RegisterType { /** * {@inheritdoc} */ - public function buildForm(FormBuilderInterface $builder, array $options) { - return $builder->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'))); - } + public function configureOptions(OptionsResolver $resolver): void { + //Call parent configure option + parent::configureOptions($resolver); - /** - * {@inheritdoc} - */ - public function configureOptions(OptionsResolver $resolver) { - $resolver->setDefaults(['error_bubbling' => true]); + //Set defaults + $resolver->setDefaults(['civility' => false, 'mail' => true, 'password' => true, 'forename' => false, 'surname' => false]); } /** * {@inheritdoc} */ - public function getName() { - return 'rapsys_user_recover'; + public function getName(): string { + return 'rapsysuser_recover'; } }