{% extends 'front/' ~ websiteTemplate ~ '/base.html.twig' %} {% trans_default_domain 'front_customer' %} {% import 'core/src-macro.html.twig' as resources %} {% block metaTitle %}{{ "Inscrivez-vous"|trans|raw }} - {{ companyName }}{% endblock %} {% block metaRobots %}noindex{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %} {% block body %}

{{ "Inscrivez-vous"|trans|raw }}

{% if app.user %} {% include 'front/' ~ websiteTemplate ~ '/include/alert.html.twig' with {"alert": 'info', "message": "Vous êtes déjà donnecté."} only %} {% else %} {{ form_start(form, {"attr": {"novalidate": "novalidate", 'class': 'security'}}) }}
{% for field in form.children %} {{ form_row(form[field.vars.name]) }} {% endfor %}
{% include "security/includes/recaptcha-fields.html.twig" %} {% include "front/" ~ websiteTemplate ~ "/include/flashbag.html.twig" %} {{ form_end(form) }} {% endif %}
{% endblock %}