-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproductos.html
More file actions
41 lines (39 loc) · 1.48 KB
/
productos.html
File metadata and controls
41 lines (39 loc) · 1.48 KB
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Productos - Panel de Administración - TOPGAMES</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="container-fluid">
<h1>Panel de Administración - TOPGAMES</h1>
<nav class="d-flex justify-content-between align-items-center">
<a href="inventario.html" class="btn btn-secondary">Inventario</a>
<a href="modificar.html" class="btn btn-secondary">Modificar Productos</a>
</nav>
</header>
<main class="container mt-4">
<h2>Listado de Productos</h2>
<table class="table">
<thead>
<tr>
<th>Imagen</th>
<th>Nombre</th>
<th>Categoría</th>
<th>Precio</th>
<th>Acciones</th>
</tr>
</thead>
<tbody>
<!-- Datos de productos aquí -->
</tbody>
</table>
</main>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
<script src="script.js"></script>
</body>
</html>