-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (54 loc) · 2.4 KB
/
Copy pathindex.html
File metadata and controls
61 lines (54 loc) · 2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Reporte de Ventas</title>
<!-- CSS only -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
</head>
<body>
<div class="container pt-4">
<hr>
<h1 class="font-weight-normal h4 text-center">Reporte de vuelos</h1>
<hr>
<form method="POST">
<div class="form-group row">
<label for="inpSalida" class="col-sm-3 col-form-label">Salida (Punto de Partida):</label>
<div class="col-sm-9">
<input type="text" name="inpSalida" id="inpSalida" class="form-control form-control-sm" autocomplete="off">
</div>
</div>
<div class="form-group row">
<label for="inpDestino" class="col-sm-3 col-form-label">Destino:</label>
<div class="col-sm-9">
<input type="text" name="inpDestino" id="inpDestino" class="form-control form-control-sm" autocomplete="off">
</div>
</div>
<div class="form-group row">
<label for="inpTipoDeViaje" class="col-sm-3 col-form-label">Tipo de Viaje:</label>
<div class="col-sm-9">
<select name="inpTipoDeViaje" id="inpTipoDeViaje" class="form-control form-control-sm" onchange="ShowSelected();">
<option value="">Seleccione una opción</option>
<option value="reportaje">Reportaje</option>
<option value="analista">Analista</option>
<option value="reunion">Reunion</option>
<option value="venta">Venta</option>
</select>
</div>
</div>
<div class="form-group row">
<label for="inpFechaDeViaje" class="col-sm-3 col-form-label">Fecha de Viaje:</label>
<div class="col-sm-9">
<input type="date" name="inpFechaDeViaje" id="inpFechaDeViaje" class="form-control form-control-sm" autocomplete="off">
</div>
</div>
<button type="button" class="btn btn-primary btn-block" id="btnGenerarPDF">Generar PDF</button>
</form>
</div>
<!-- JS and jQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="vendor/jsPDF/dist/jspdf.min.js"></script>
<script src="js/pdf.js"></script>
</body>
</html>