X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FCoreBundle%2FForm%2FType%2FNewUserType.php;h=6a6f63d166428a990d978f65d7ff4a94f0c9171e;hb=4094ea47712efbe58624ff74daeb1f77c9b0edcf;hp=e6fff976647afea3e41c6ed59ffb8d41134d6bb4;hpb=619cc45359ead519b64129181a07e14160fbbfcb;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/CoreBundle/Form/Type/NewUserType.php b/src/Wallabag/CoreBundle/Form/Type/NewUserType.php index e6fff976..6a6f63d1 100644 --- a/src/Wallabag/CoreBundle/Form/Type/NewUserType.php +++ b/src/Wallabag/CoreBundle/Form/Type/NewUserType.php @@ -4,6 +4,7 @@ namespace Wallabag\CoreBundle\Form\Type; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\EmailType; +use Symfony\Component\Form\Extension\Core\Type\PasswordType; use Symfony\Component\Form\Extension\Core\Type\RepeatedType; use Symfony\Component\Form\Extension\Core\Type\SubmitType; use Symfony\Component\Form\Extension\Core\Type\TextType; @@ -16,27 +17,38 @@ class NewUserType extends AbstractType public function buildForm(FormBuilderInterface $builder, array $options) { $builder - ->add('username', TextType::class, array('required' => true)) - ->add('plainPassword', RepeatedType::class, array( - 'type' => 'password', - 'constraints' => array( - new Constraints\Length(array( + ->add('username', TextType::class, [ + 'required' => true, + 'label' => 'config.form_new_user.username_label', + ]) + ->add('plainPassword', RepeatedType::class, [ + 'type' => PasswordType::class, + 'invalid_message' => 'validator.password_must_match', + 'first_options' => ['label' => 'config.form_new_user.password_label'], + 'second_options' => ['label' => 'config.form_new_user.repeat_new_password_label'], + 'constraints' => [ + new Constraints\Length([ 'min' => 8, - 'minMessage' => 'Password should by at least 8 chars long', - )), + 'minMessage' => 'validator.password_too_short', + ]), new Constraints\NotBlank(), - ), - )) - ->add('email', EmailType::class) - ->add('save', SubmitType::class) + ], + 'label' => 'config.form_new_user.plain_password_label', + ]) + ->add('email', EmailType::class, [ + 'label' => 'config.form_new_user.email_label', + ]) + ->add('save', SubmitType::class, [ + 'label' => 'config.form.save', + ]) ; } public function configureOptions(OptionsResolver $resolver) { - $resolver->setDefaults(array( + $resolver->setDefaults([ 'data_class' => 'Wallabag\UserBundle\Entity\User', - )); + ]); } public function getBlockPrefix()