{% extends 'base.html.twig' %} {% block title %}Inscription{% endblock %} {% block body %}

Créer un compte

{{ form_start(registrationForm) }}
{{ form_label(registrationForm.username, null, { label_attr: { class: "form-label" } }) }} {{ form_widget(registrationForm.username, { attr: { class: "form-input" } }) }} {{ form_errors(registrationForm.username, { attr: { class: "form-error" } }) }}
{{ form_label(registrationForm.plainPassword, null, { label_attr: { class: "form-label" } }) }} {{ form_widget(registrationForm.plainPassword, { attr: { class: "form-input" } }) }} {{ form_errors(registrationForm.plainPassword, { attr: { class: "form-error" } }) }}
{{ form_widget(registrationForm.agreeTerms, { attr: { class: "form-checkbox" } }) }} {{ form_label(registrationForm.agreeTerms, null, { label_attr: { class: "inline" } }) }} {{ form_errors(registrationForm.agreeTerms, { attr: { class: "form-error" } }) }}
{{ form_end(registrationForm) }}
{% endblock %}