{% extends 'base.html.twig' %} {% block localstyle %} {% endblock %} {% block body %} {{ form_start(form) }} {% if appModeregistration!="none" %}

{% if mode=="update" %} Confirmation à l'Utilisateur = {{ registration.username }} {% elseif mode=="submit" %} Inscription {% endif %}

{{ form_widget(form.submit) }} {% if mode=="update" %} {{ form_widget(form.save) }} Envoyer un mail Annuler Supprimer {%endif%}

{% if app.session.flashbag.has('error') %}
Erreur
{% for flashMessage in app.session.flashbag.get('error') %} {{ flashMessage | raw }}
{% endfor %}
{% endif %} {% if app.session.flashbag.has('notice') %}
Information
{% for flashMessage in app.session.flashbag.get('notice') %} {{ flashMessage | raw }}
{% endfor %}
{% endif %} {% if mode=="send" %}
Information
Cette action permet de générer une nouvelle clé de validation et de renouveller la date d'expiration de cette clé.
Un email sera envoyé à l'utilisateur

{% endif %}
{% if mode=="update" %}
Notes Administrateur
{{ form_widget(form.note) }}
{%endif%}
Connexion
{{ form_row(form.username) }}
Formatez votre login sous la forme prenom.nom dans la mesure du possible
Taille minimum = 5 caractères
Caractères interdits = accent, espace, caractères spéciaux sauf @ . - _
{% if form.password is defined %} {{ form_row(form.password) }}
{{ form_row(form.passwordplain) }}
Le mot de passe doit comporter au moins 8 caractères, avec obligatoirement des lettres, chiffres et caractères spéciaux.
{% if form.captcha is defined %} {{ form_row(form.captcha) }} {% endif %} {% endif %}
Motivations
{{ form_row(form.motivation) }}
Informations
{{ form_row(form.niveau01) }} {%if form.niveau02 is defined %}{{ form_row(form.niveau02) }}{%endif%} {%if form.niveau03 is defined %}{{ form_row(form.niveau03) }}{%endif%} {%if form.niveau04 is defined %}{{ form_row(form.niveau04) }}{%endif%} {{ form_row(form.firstname) }} {{ form_row(form.lastname) }} {{ form_row(form.email) }} {{ form_row(form.isvisible) }}
Organisation
{{ form_row(form.job) }} {{ form_row(form.position) }} {{ form_row(form.postaladress) }} {{ form_row(form.telephonenumber) }}
{% if auditUse and mode=="update" and (access=="admin" or access=="modo" or access=="audit") %} {{ render(path("app_"~access~"_audit_renderid",{entityname:"Registration",entityid:registration.id})) }} {% endif %}
{% endif %} {{ form_end(form) }} {% endblock %} {% block localscript %} {% endblock %}