2025-03-28 15:16:00 +00:00
|
|
|
<!DOCTYPE html>
|
2025-03-28 16:25:43 +00:00
|
|
|
<html lang="es" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.w3.org/1999/xhtml">
|
2025-04-02 18:32:57 +00:00
|
|
|
<head>
|
|
|
|
|
<title>Gestión de Usuarios</title>
|
|
|
|
|
<!-- <link rel="stylesheet" th:href="@{/css/table_style.css}">-->
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<h2>Gestión de Usuarios</h2>
|
|
|
|
|
<hr>
|
|
|
|
|
<table border="1px">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>ID</tr>
|
|
|
|
|
<tr>NOMBRE</tr>
|
|
|
|
|
<tr>ROL</tr>
|
|
|
|
|
<tr>EMAIL</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr th:each="user : ${users}">
|
|
|
|
|
<td th:number="${user.id}"></td>
|
|
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
</body>
|
2025-03-28 15:16:00 +00:00
|
|
|
</html>
|
|
|
|
|
|
|
|
|
|
|