X-Git-Url: https://git.rapsys.eu/userbundle/blobdiff_plain/dcf1a9152907ef2cef7ad387a6db52a1b58c87f0..HEAD:/Form/LoginType.php diff --git a/Form/LoginType.php b/Form/LoginType.php index 43adc6e..fccd4be 100644 --- a/Form/LoginType.php +++ b/Form/LoginType.php @@ -1,38 +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 LoginType extends AbstractType { +/** + * {@inheritdoc} + */ +class LoginType extends RegisterType { /** * {@inheritdoc} */ - public function buildForm(FormBuilderInterface $builder, array $options) { - return $builder - ->add('mail', EmailType::class, ['attr' => ['placeholder' => 'Your mail'], 'constraints' => [new NotBlank(['message' => 'Please provide your mail']), new Email(['message' => 'Your mail doesn\'t seems to be valid'])]]) - ->add('password', PasswordType::class, ['attr' => ['placeholder' => 'Your password'], 'constraints' => [new NotBlank(['message' => 'Please provide your password'])]]) - ->add('submit', SubmitType::class, ['label' => 'Send', 'attr' => ['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, 'password' => true, 'password_repeated' => false, 'forename' => false, 'surname' => false]); } /** * {@inheritdoc} */ - public function getName() { - return 'rapsys_user_login'; + public function getName(): string { + return 'rapsysuser_login'; } }