Añadir carpeta src

This commit is contained in:
Bruno Martínez Luna 2025-02-28 19:46:08 -06:00
parent 1ccef5b010
commit ed30535698
1 changed files with 35 additions and 0 deletions

35
src/reporte.html Normal file
View File

@ -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>