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

26 lines
817 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>User management</title>
<link rel="stylesheet" th:href="@{/css/style.css}">
</head>
<body>
<h2 th:text="'Gestión de usuarios'"></h2>
<div class="container1">
<a href="/Inventario/register">
<button>Registrar usuario</button>
</a>
<!-- TODO: modificar ruta-->
<a href="/Inventario/register">
<button>Borrar usuario</button>
</a>
<a href="/Inventario/home">
<button class="button_salir">Volver al inicio</button>
</a>
</div>
<!-- TODO: añadir botón para para editar usuarios -->
</body>
</html>