templates/registration/register.html.twig line 1
{% extends 'base.html.twig' %}
{% block title %}Register{% endblock %}
{% block body %}
Création de compte
{% if userExistError is not empty %}
{% endif %}
{% if formFieldErrors is not empty %}
{% for error in formFieldErrors %}
{% if error is not empty %}
{{ error }}
{% endif %}
{% endfor %}
{% endif %}
{{ form_start(registrationForm) }}
{{ form_end(registrationForm) }}
{% endblock %}