{% extends '@kohinos/installation/layout.html.twig' %} {% block step_title %}Création de l'utilisateur super admin{% endblock %} {% block step_content %}

Créez le compte utilisateur super administrateur qui vous permettra de gérer l'ensemble du système.

{{ form_start(form, {'attr': {'class': 'installation-form'}}) }}
{{ form_label(form.user_email) }} {{ form_widget(form.user_email) }} {{ form_errors(form.user_email) }} {% if form.user_email.vars.help is defined %} {{ form.user_email.vars.help|raw }} {% endif %}
{{ form_label(form.user_password.first) }} {{ form_widget(form.user_password.first) }} {{ form_errors(form.user_password.first) }} {% if form.user_password.first.vars.help is defined %} {{ form.user_password.first.vars.help|raw }} {% endif %}
{{ form_label(form.user_password.second) }} {{ form_widget(form.user_password.second) }} {{ form_errors(form.user_password.second) }} {% if form.user_password.second.vars.help is defined %} {{ form.user_password.second.vars.help|raw }} {% endif %}
{{ form_label(form.user_firstname) }} {{ form_widget(form.user_firstname) }} {{ form_errors(form.user_firstname) }} {% if form.user_firstname.vars.help is defined %} {{ form.user_firstname.vars.help|raw }} {% endif %}
{{ form_label(form.user_lastname) }} {{ form_widget(form.user_lastname) }} {{ form_errors(form.user_lastname) }} {% if form.user_lastname.vars.help is defined %} {{ form.user_lastname.vars.help|raw }} {% endif %}
{% if app.session.get('installation_data').enable_mlc is defined and app.session.get('installation_data').enable_mlc %} Retour {% else %} Retour {% endif %}
{{ form_end(form) }} {% endblock %}