-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinventario.html
More file actions
50 lines (48 loc) · 1.88 KB
/
inventario.html
File metadata and controls
50 lines (48 loc) · 1.88 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
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Manejo del Inventario - 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="../styles.css">
</head>
<body>
<header class="container-fluid">
<h1>TOPGAMES</h1>
<nav>
<a href="../index.html" class="btn btn-secondary">Inicio</a>
<button onclick="location.href='productos.html'" class="btn btn-secondary">Atrás</button> <!-- Aquí añadí la clase btn-secondary -->
</nav>
</header>
<main class="container mt-5">
<section class="inventory">
<h2>Inventario</h2>
<table class="table">
<thead>
<tr>
<th>Nombre</th>
<th>Descripción</th>
<th>Precio</th>
<th>Stock</th>
<th>Acciones</th>
</tr>
</thead>
<tbody>
<!-- Aquí se mostrarán los productos en el inventario -->
<tr>
<td>Juego 1</td>
<td>Descripción del Juego 1.</td>
<td>$50.00</td>
<td>10</td>
<td><button class="btn btn-warning">Modificar</button></td>
</tr>
</tbody>
</table>
</section>
</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>