{% extends 'base.html.twig' %} {% block title %}Admin - Inscription{% endblock %} {% block body %} {% include 'admin/_header.html.twig' %}
{% for label, messages in app.flashes %} {% for message in messages %} {% endfor %} {% endfor %}

Les administrateurs

{% for oneuser in alluser %} {% endfor %} {{ form_start(form_registration) }} {{ form_end(form_registration) }}
Id Nom de l'Utilisateur Mot de passe Action
{{ oneuser.id }} {{ oneuser.username }} *******
{{ form_row(form_registration.username, {label: false, attr: {placeholder: 'Utilisateur'} }) }} {{ form_row(form_registration.password, {label: false, attr: {placeholder: 'Mot de passe'} }) }} {{ form_row(form_registration.confirm_password, {label: false, attr: {placeholder: 'Confirmation MDP'} }) }}
{% endblock %}