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

37 lines
1.1 KiB
HTML

<!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>
<div class="contenido">
<h2>Gestión de Usuarios</h2>
<div class="table-container">
<table>
<thead>
<tr>
<th>ID</th>
<th>Nombre</th>
<th>Rol</th>
<th>Email</th>
<th>Acciones</th>
</tr>
</thead>
<tbody>
<tr th:each="user : ${users}">
<td th:text="${user.id}"></td>
<td th:text="${user.nombre}"></td>
<td th:text="${user.role}"></td>
<td th:text="${user.mail}"></td>
<td class="celda-acciones"><button>✏️</button> <button>🗑️</button></td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>