Eliminar src/reporte.html

This commit is contained in:
maria.ruiz 2025-03-13 06:43:10 +00:00
parent 207e5a560a
commit 286e466ce1
1 changed files with 0 additions and 35 deletions

View File

@ -1,35 +0,0 @@
<!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>