-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (58 loc) · 1.86 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<header>
<h1>Variedades Osi</h1>
<nav>
<ul>
<li><a href="#">Inicio</a></li>
<li><a href="#">Cliente</a></li>
<li><a href="#">Empleado</a></li>
<li><a href="#">Proveedor</a></li>
<li><a href="#">Producto</a></li>
<li><a href="#">Inventario</a></li>
<li><a href="#">Venta</a></li>
<li><a href="#">Reportes</a></li>
<li><a href="#">Ajustes</a></li>
</ul>
</nav>
</header>
<main>
<section id="client-section">
<h2>Clientes</h2>
<button id="add-client-btn">Agregar</button>
<table id="client-table">
<thead>
<tr>
<th>Nombre</th>
<th></th>
<th>Correo</th>
<th>Contactos</th>
<th>Acciones</th>
</tr>
</thead>
<tbody>
<tr>
<td>Amanda Rodriguez</td>
<td>getample.com</td>
<td>Amand: Hodrigu</td>
<td>627394158</td>
<td>
<button class="update-btn">Actualizar</button>
<button class="delete-btn">Eliminar</button>
</td>
</tr>
<!-- Add more rows as needed -->
</tbody>
</table>
</section>
</main>
<footer>
<p>© 2023 Central Optic + a Sesul</p>
</footer>
<script type="module" src="./js/nombre.js"></script>
</body>
</html>