src/Form/NewReportFormType.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Form;
  3. use App\Entity\Report;
  4. use Symfony\Component\Form\AbstractType;
  5. use Symfony\Component\Form\Extension\Core\Type\SubmitType;
  6. use Symfony\Component\Form\Extension\Core\Type\TextType;
  7. use Symfony\Component\Form\FormBuilderInterface;
  8. use Symfony\Component\OptionsResolver\OptionsResolver;
  9. use Symfony\Component\Validator\Constraints\Hostname;
  10. use Symfony\Component\Validator\Constraints\Sequentially;
  11. class NewReportFormType extends AbstractType
  12. {
  13.     public function buildForm(FormBuilderInterface $builder, array $options): void
  14.     {
  15.         $builder
  16.             ->add('domain'TextType::class, [
  17.                 'constraints' => [
  18.                     new Sequentially([
  19.                         new Hostname(),
  20.                     ]),
  21.                 ],
  22.                 'attr' => [
  23.                     'placeholder' => 'example.com',
  24.                 ],
  25.                 'label' => 'https://',
  26.                 'row_attr' => [
  27.                     'class' => 'input-group',
  28.                 ],
  29.             ])
  30.             ->add('Submit'SubmitType::class, [
  31.                 'label' => 'Proceed <i class="fa-solid fa-angle-right ms-2"></i>',
  32.                 'label_html' => true,
  33.                 'row_attr' => [
  34.                     'class' => 'mt-3',
  35.                 ],
  36.             ])
  37.         ;
  38.     }
  39.     public function configureOptions(OptionsResolver $resolver): void
  40.     {
  41.         $resolver->setDefaults([
  42.             'data_class' => Report::class,
  43.             'csrf_protection' => false,
  44.         ]);
  45.     }
  46. }