<?php
namespace App\Form;
use App\Entity\User;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
use Symfony\Component\Form\Extension\Core\Type\PasswordType;
use Symfony\Component\Form\Extension\Core\Type\EmailType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
use Symfony\Component\Validator\Constraints\IsTrue;
use Symfony\Component\Validator\Constraints\Length;
use Symfony\Component\Validator\Constraints\NotBlank;
class RegistrationFormType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options): void
{
$builder
->add('username', null, [
'attr' => ['class' => 'input100', 'placeholder' => 'Usuario'],
'row_attr' => ['style'=> 'margin-bottom: 0px']
])
->add('email', EmailType::class, [
'attr' => ['class' => 'input100', 'placeholder' => ' Email'],
'row_attr' => ['style'=> 'margin-bottom: 0px']
])
->add('agreeTerms', CheckboxType::class, [
'mapped' => false,
'attr' => [
'class' => 'form-check-input ',
'id' => 'agree_terms',
],
'row_attr'=> ['class'=>'form-check text_blanco'],
'label_attr'=> ['class'=>'text_blanco', 'id'=>'text_blanco'],
'label' => 'Aceptar términos y condiciones',
'constraints' => [
new IsTrue([
'message' => 'You should agree to our terms.',
]),
],
])
->add('plainPassword', PasswordType::class, [
// instead of being set onto the object directly,
// this is read and encoded in the controller
'mapped' => false,
'attr' => [
'class' => 'input100',
'autocomplete' => 'new-password',
'placeholder' => 'Contraseña'],
'row_attr' => ['style'=> 'margin-bottom: 0px'],
'constraints' => [
new NotBlank([
'message' => 'Please enter a password',
]),
new Length([
'min' => 6,
'minMessage' => 'Your password should be at least {{ limit }} characters',
// max length allowed by Symfony for security reasons
'max' => 4096,
]),
],
])
;
}
public function configureOptions(OptionsResolver $resolver): void
{
$resolver->setDefaults([
'data_class' => User::class,
]);
}
}