formregister
This commit is contained in:
parent
39a8e59288
commit
e729450c64
31
migrations/Version20241121153037.php
Normal file
31
migrations/Version20241121153037.php
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace DoctrineMigrations;
|
||||||
|
|
||||||
|
use Doctrine\DBAL\Schema\Schema;
|
||||||
|
use Doctrine\Migrations\AbstractMigration;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Auto-generated Migration: Please modify to your needs!
|
||||||
|
*/
|
||||||
|
final class Version20241121153037 extends AbstractMigration
|
||||||
|
{
|
||||||
|
public function getDescription(): string
|
||||||
|
{
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
public function up(Schema $schema): void
|
||||||
|
{
|
||||||
|
// this up() migration is auto-generated, please modify it to your needs
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function down(Schema $schema): void
|
||||||
|
{
|
||||||
|
// this down() migration is auto-generated, please modify it to your needs
|
||||||
|
$this->addSql('CREATE SCHEMA public');
|
||||||
|
}
|
||||||
|
}
|
@ -26,8 +26,8 @@ class Announcement
|
|||||||
#[ORM\JoinColumn(nullable: false)]
|
#[ORM\JoinColumn(nullable: false)]
|
||||||
private ?Company $company = null;
|
private ?Company $company = null;
|
||||||
|
|
||||||
#[ORM\Column(length: 255)]
|
#[ORM\Column(nullable: false)]
|
||||||
private ?string $status = 'notVerified';
|
private ?string $status = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var ?Collection<int, InternApplication>
|
* @var ?Collection<int, InternApplication>
|
||||||
|
@ -3,11 +3,12 @@
|
|||||||
namespace App\Form;
|
namespace App\Form;
|
||||||
|
|
||||||
use App\Entity\UserApp;
|
use App\Entity\UserApp;
|
||||||
use Doctrine\DBAL\Types\StringType;
|
|
||||||
use Symfony\Component\Form\AbstractType;
|
use Symfony\Component\Form\AbstractType;
|
||||||
use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
|
use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
|
||||||
use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
|
use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
|
||||||
|
use Symfony\Component\Form\Extension\Core\Type\EmailType;
|
||||||
use Symfony\Component\Form\Extension\Core\Type\PasswordType;
|
use Symfony\Component\Form\Extension\Core\Type\PasswordType;
|
||||||
|
use Symfony\Component\Form\Extension\Core\Type\TextType;
|
||||||
use Symfony\Component\Form\FormBuilderInterface;
|
use Symfony\Component\Form\FormBuilderInterface;
|
||||||
use Symfony\Component\OptionsResolver\OptionsResolver;
|
use Symfony\Component\OptionsResolver\OptionsResolver;
|
||||||
use Symfony\Component\Validator\Constraints\IsTrue;
|
use Symfony\Component\Validator\Constraints\IsTrue;
|
||||||
@ -19,15 +20,38 @@ class RegistrationFormType extends AbstractType
|
|||||||
public function buildForm(FormBuilderInterface $builder, array $options): void
|
public function buildForm(FormBuilderInterface $builder, array $options): void
|
||||||
{
|
{
|
||||||
$builder
|
$builder
|
||||||
->add('nickname')
|
->add('nickname', TextType::class, [
|
||||||
->add('agreeTerms', CheckboxType::class, [
|
'label' => 'Utilisateur : ',
|
||||||
'mapped' => false,
|
|
||||||
'constraints' => [
|
|
||||||
new IsTrue([
|
|
||||||
'message' => 'Vous devez accepter les conditions d\'utilisation.',
|
|
||||||
]),
|
|
||||||
],
|
|
||||||
])
|
])
|
||||||
|
->add('firstname', TextType::class, [
|
||||||
|
'label' => 'Prénom : ',
|
||||||
|
'required' => true,
|
||||||
|
'constraints' => [
|
||||||
|
new NotBlank(),
|
||||||
|
]
|
||||||
|
])
|
||||||
|
->add('lastname', TextType::class, [
|
||||||
|
'label' => 'Nom : ',
|
||||||
|
'required' => true,
|
||||||
|
'constraints' => [
|
||||||
|
new NotBlank(),
|
||||||
|
]
|
||||||
|
])
|
||||||
|
->add('mail', EmailType::class, [
|
||||||
|
'label' => 'Email : ',
|
||||||
|
'required' => true,
|
||||||
|
'constraints' => [
|
||||||
|
new NotBlank(),
|
||||||
|
]
|
||||||
|
])
|
||||||
|
// ->add('agreeTerms', CheckboxType::class, [
|
||||||
|
// 'mapped' => false,
|
||||||
|
// 'constraints' => [
|
||||||
|
// new IsTrue([
|
||||||
|
// 'message' => 'Vous devez accepter les conditions d\'utilisation.',
|
||||||
|
// ]),
|
||||||
|
// ],
|
||||||
|
// ])
|
||||||
->add('plainPassword', PasswordType::class, [
|
->add('plainPassword', PasswordType::class, [
|
||||||
// instead of being set onto the object directly,
|
// instead of being set onto the object directly,
|
||||||
// this is read and encoded in the controller
|
// this is read and encoded in the controller
|
||||||
|
@ -9,10 +9,13 @@
|
|||||||
|
|
||||||
{{ form_start(registrationForm) }}
|
{{ form_start(registrationForm) }}
|
||||||
{{ form_row(registrationForm.nickname) }}
|
{{ form_row(registrationForm.nickname) }}
|
||||||
|
{{ form_row(registrationForm.firstname) }}
|
||||||
|
{{ form_row(registrationForm.lastname) }}
|
||||||
|
{{ form_row(registrationForm.mail) }}
|
||||||
{{ form_row(registrationForm.plainPassword, {
|
{{ form_row(registrationForm.plainPassword, {
|
||||||
label: 'Password'
|
label: 'Password'
|
||||||
}) }}
|
}) }}
|
||||||
{{ form_row(registrationForm.agreeTerms) }}
|
{# {{ form_row(registrationForm.agreeTerms) }}#}
|
||||||
|
|
||||||
<button type="submit" class="btn">S'inscrire</button>
|
<button type="submit" class="btn">S'inscrire</button>
|
||||||
{{ form_end(registrationForm) }}
|
{{ form_end(registrationForm) }}
|
||||||
|
Loading…
Reference in New Issue
Block a user