{% extends 'base.html.twig' %}
{% block title %}VOIR LES UTILISATEURS{% endblock %}
{% block body %}
<div class="container w-50 mx-auto my-5">
<h1 class="bg-primary mt-5 mb-0 py-2 text-center">VOIR LES UTILISATEURS :</h1>
<a href="{{ path('app_dataHome')}}" class="btn btn-primary mt-3">Retour</a>
<table class="table table-striped table-hover text-left my-5">
<thead>
<tr class="bg-secondary">
<th scope="col" class="text-center">Id</th>
<th scope="col" class="text-center">Email</th>
<th scope="col" class="text-center">Mot de passe</th>
</tr>
</thead>
<tbody>
{% for user in users %}
<tr>
<th scope="row" class="text-center">{{ user.getId() }}</th>
<td class="text-center">{{ user.getEmail() }}</td>
<td class="text-center">{{ user.getPassword() }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}