-
Notifications
You must be signed in to change notification settings - Fork 0
/
admuser.html
103 lines (92 loc) · 2.82 KB
/
admuser.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="img/logo.png">
<link rel="stylesheet" type="text/css" href="/assets/css/main.css">
<link href="https://fonts.cdnfonts.com/css/gotham" rel="stylesheet">
<script src="/assets/js/components/paw.js"></script>
<title>Planta piloto UNLU</title>
</head>
<body>
<!--header-->
<header>
<h1>
<a href="index.html"><img src="img/logo.png" width="96px" height="96px" />
Planta Piloto UNLu
</a>
</h1>
</header>
<!--header-->
<!--navbar-->
<nav>
<input id="hamburgerMenu" type="checkbox" name="">
<label for="hamburgerMenu" class="hamburgerMenu"></label>
<ul>
<li class ="navbarDropOption">
<a>Registro</a>
<ul>
<li><a href="login.html">Iniciar sesión</a></li>
<li><a href="register.html">Registrarse</a></li>
</ul>
</li>
<li class ="navbarDropOption">
<a>Gestion de productos</a>
<ul class ="gp">
<li><a href="admtipopro.html">Administrar Tipo de producto</a></li>
<li><a href="admlotes.html">Administrar Lotes</a></li>
<li><a href="admfases.html">Administrar Fases</a></li>
</ul>
</li>
<li class ="navbarDropOption">
<a>Configuración</a>
<ul>
<li><a href="admform.html">Formularios</a></li>
<li><a href="admalert.html">Alertas</a></li>
</ul>
</li>
<li><a href="admuser.html">Administrar Usuarios</a></li>
</ul>
</nav>
<!--navbar-->
<!--body-->
<main>
<h1>Gestión de Usuarios</h1>
<!-- Filtro de Usuarios -->
<input type="text" id="filtro" placeholder="Filtrar por nombre">
<button onclick="filtrarUsuarios()">Filtrar</button>
<!-- Tabla de Usuarios -->
<table id="tablaUsuarios">
<tr>
<th>ID</th>
<th>Email</th>
<th>Rol</th>
<th>Acciones</th>
</tr>
<!-- Aquí se cargarán dinámicamente los usuarios -->
</table>
<!-- Formulario para Agregar/Editar Usuario -->
<form id="formularioUsuario" onsubmit="guardarUsuario(event)">
<label for="email">Email:</label>
<input type="text" id="nombre" required>
<label for="rol">Rol:</label>
<select id="rol" required>
<option value="usuario">Usuario</option>
<option value="administrador">Administrador</option>
</select>
<button type="submit">Guardar</button>
</form>
</main>
<!--body-->
</body>
<!--footer-->
<footer>
<p>Sistema desarrollado por los estudiantes de la asignatura Programación en ambiente web</p>
<ul>
<li>Torres patricio</li>
<li>Simone Federico</li>
</ul>
</footer>
<!--footer-->
</html>