Blog_IMIE/assets/html/user_list.html
2019-03-05 12:55:29 +01:00

50 lines
894 B
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
</head>
<body>
<header>
<tag type="includes" file="header" />
</header>
<main class="test container">
<div>
<div>
<div class="bloc_principal_titre">
<h1>UTILISATEURS</h1>
</div>
<div class="cover-text">
<h2 id="titre-home">Cliquez sur un utilisateur pour le modifier</h2>
<table>
<thead>
<tr>
<th>Nom d'utilisateur</th>
<th>Role</th>
</tr>
</thead>
<tbody>
<tag type="users">
<tr>
<td>
<loop column="username" />
</td>
<td>
<loop column="role" />
</td>
</tr>
</tag>
</tbody>
</table>
<a href="/users/new" class="bloc-button">Nouvel utilisateur</a>
</div>
</div>
</div>
</main>
<footer>
<tag type="includes" file="footer" />
</footer>
</body>
</html>