43 lines
1.4 KiB
HTML
43 lines
1.4 KiB
HTML
<!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="estilos/reporte_ventas.css">
|
|
<link rel="stylesheet" href="css/bootstrap.min.css">
|
|
</head>
|
|
<body style="background-color: #f9f7f4;">
|
|
<br>
|
|
<div class="container">
|
|
<h1>Reporte de Ventas</h1>
|
|
<form id="formReporte">
|
|
<label for="fechaInicio">Fecha de Inicio:</label>
|
|
<input type="date" id="fechaInicio" name="fechaInicio" required>
|
|
|
|
<label for="fechaFin">Fecha de Fin:</label>
|
|
<input type="date" id="fechaFin" name="fechaFin" required>
|
|
|
|
<button type="submit">Generar Reporte</button>
|
|
</form>
|
|
|
|
<div id="resultadoReporte">
|
|
<h2>Total de Boletos Vendidos: <span id="totalBoletos">0</span></h2>
|
|
<table id="tablaVentas">
|
|
<thead>
|
|
<tr>
|
|
<th>Fecha de Venta</th>
|
|
<th>Número de Asiento</th>
|
|
<th>Precio</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="scripts/reporte_ventas.js"></script>
|
|
<script src="js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html> |