{% extends "security/base.html.twig" %} {% trans_default_domain 'security_cms' %} {% block title %}{{ "Inscrivez-vous"|trans|striptags }}{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block body %} {% include "security/includes/flashbag.html.twig" %} {% if app.user %} {% include 'security/includes/alert.html.twig' with {"alert": 'info', "message": "Vous êtes déjà donnecté."} only %}
{{ 'Retourner sur le site'|trans|raw }}
{% else %} {{ form_start(form, {"attr": {"id": "user-register-form", "novalidate": "novalidate"}}) }}
{% for field in form.children %} {{ form_row(form[field.vars.name]) }} {% endfor %}
{{ form_end(form) }} {% endif %} {% endblock %}