-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompras.html
More file actions
52 lines (50 loc) · 1.85 KB
/
compras.html
File metadata and controls
52 lines (50 loc) · 1.85 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
51
52
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Monitoreo de Compras - 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>TOPGAMES</h1>
<nav>
<a href="index.html" class="btn btn-primary">Inicio</a>
<a href="login.html" class="btn btn-secondary">Iniciar Sesión</a>
</nav>
</header>
<main class="container mt-5">
<section class="purchase-monitor">
<h2>Monitoreo de Compras</h2>
<table class="table">
<thead>
<tr>
<th>ID Compra</th>
<th>Nombre del Usuario</th>
<th>Producto</th>
<th>Cantidad</th>
<th>Total</th>
<th>Fecha</th>
</tr>
</thead>
<tbody>
<!-- Aquí se mostrarán las compras realizadas -->
<tr>
<td>001</td>
<td>Usuario Ejemplo</td>
<td>Juego 1</td>
<td>1</td>
<td>$50.00</td>
<td>2024-08-24</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>