diff --git a/Interfaz/reporte_ventas.html b/Interfaz/reporte_ventas.html index eae8353..0a18438 100644 --- a/Interfaz/reporte_ventas.html +++ b/Interfaz/reporte_ventas.html @@ -1,44 +1,43 @@ -<!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> - <!-- Las filas se llenarán dinámicamente --> - </tbody> - </table> - </div> - </div> - - <script src="scripts/reporte_ventas.js"></script> - <script src="js/bootstrap.bundle.min.js"></script> -</body> +<!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> \ No newline at end of file