2024-10-17 16:38:47 +02:00
|
|
|
{% extends 'base.html.twig' %}
|
|
|
|
|
2024-11-21 15:59:55 +01:00
|
|
|
{% block title %}Inscription{% endblock %}
|
2024-10-17 16:38:47 +02:00
|
|
|
|
|
|
|
{% block body %}
|
2024-11-21 15:59:55 +01:00
|
|
|
<h1>Inscription</h1>
|
2024-10-17 16:38:47 +02:00
|
|
|
|
|
|
|
{{ form_errors(registrationForm) }}
|
|
|
|
|
|
|
|
{{ form_start(registrationForm) }}
|
2024-11-21 15:59:55 +01:00
|
|
|
{{ form_row(registrationForm.nickname) }}
|
|
|
|
{{ form_row(registrationForm.plainPassword, {
|
|
|
|
label: 'Password'
|
|
|
|
}) }}
|
|
|
|
{{ form_row(registrationForm.agreeTerms) }}
|
2024-10-17 16:38:47 +02:00
|
|
|
|
2024-11-21 15:59:55 +01:00
|
|
|
<button type="submit" class="btn">S'inscrire</button>
|
2024-10-17 16:38:47 +02:00
|
|
|
{{ form_end(registrationForm) }}
|
|
|
|
{% endblock %}
|