<?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\EmailType;
use Symfony\Component\Form\Extension\Core\Type\PasswordType;
use Symfony\Component\Form\Extension\Core\Type\RepeatedType;
use Symfony\Component\Form\Extension\Core\Type\TextType;
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('email', EmailType::class, [
'required' => true,
'label' => false,
])
->add('name', TextType::class, [
'required' => true,
'label' => false,
])
->add('surname', TextType::class, [
'required' => true,
'label' => false,
])
->add('phone', TextType::class, [
'label' => false,
])
->add('code', TextType::class, [
'label' => false,
'required' => false,
])
->add('agreeTerms', CheckboxType::class, [
'mapped' => false,
'label' => '<a href="https://www.efsgroup.cz/download/podminky-uzivani.pdf" target="_blank" class="fw-bold">Souhlasím podmínkami užívání webu</a>',
'label_html' => true,
'constraints' => [
new IsTrue([
'message' => 'Musíte souhlasit s podmínkami užívání webu.',
]),
],
])
->add('plainPassword', RepeatedType::class, [
// instead of being set onto the object directly,
// this is read and encoded in the controller
'mapped' => false,
'type' => PasswordType::class,
'attr' => ['autocomplete' => 'new-password'],
'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,
'attr' => [
'data-controller' => 'register-form',
'data-action' => 'submit->register-form#submitForm'
]
]);
}
}