Gestion-inventario/src/main/resources/templates/user_management.html

28 lines
621 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="es" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.w3.org/1999/xhtml">
<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>
</html>