18 lines
466 B
HTML
18 lines
466 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html 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>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|
||
|
|
|
||
|
|
|