From ed3053569890f37ebf4285d949e1154be2fa6804 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bruno=20Mart=C3=ADnez=20Luna?=
 <zS22016061@estudiantes.uv.mx>
Date: Fri, 28 Feb 2025 19:46:08 -0600
Subject: [PATCH] =?UTF-8?q?A=C3=B1adir=20carpeta=20src?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 src/reporte.html | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)
 create mode 100644 src/reporte.html

diff --git a/src/reporte.html b/src/reporte.html
new file mode 100644
index 0000000..56f8e29
--- /dev/null
+++ b/src/reporte.html
@@ -0,0 +1,35 @@
+<!DOCTYPE html>
+<html lang="es">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>Reporte de Ventas</title>
+    <link rel="stylesheet" href="styles.css">
+</head>
+<body>
+    <div class="report-container">
+        <h2>Reporte de Ventas</h2>
+        
+        <label for="fecha">Seleccionar Fecha:</label>
+        <input type="date" id="fecha">
+
+        <button onclick="generarReporte()">Generar Reporte</button>
+
+        <table id="reporte">
+            <thead>
+                <tr>
+                    <th>ID</th>
+                    <th>Precio</th>
+                    <th>No. Asiento</th>
+                    <th>Fecha de Venta</th>
+                </tr>
+            </thead>
+            <tbody>
+                <!-- Los datos se llenarĂ¡n dinĂ¡micamente con JS -->
+            </tbody>
+        </table>
+    </div>
+
+    <script src="script.js"></script>
+</body>
+</html>