-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformBusAdd.html
81 lines (63 loc) · 3.14 KB
/
formBusAdd.html
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="images/BusFinal.png" type="image/x-icon">
<!-- LINK CSS -->
<link rel="stylesheet" href="CSS/formulario.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<!-- FIN LINK CSS -->
<!-- ALERLAS CSS -->
<script src="sweetalert2.min.js"></script>
<link rel="stylesheet" href="sweetalert2.min.css">
<!-- FIN ALERLAS CSS -->
<!--AJAX-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!--FIN AJAX-->
<title>Agregar | Bus</title>
</head>
<body>
<nav class="navbar navbar-expand-lg bg-body-tertiary navbar bg-dark" data-bs-theme="dark" style="width: 100%;">
<!--Contenedor Responsive Navegacion-->
<div class="container-fluid">
<!--Titulo Web-->
<a class="navbar-brand" href="index.html">Mi Ruta</a>
</div>
</nav>
<!--Formulario Ingreso-->
<div class="formularios_ing_regi">
<img src="images/boton-agregar.png" class="agregar" alt="imgAgregar">
<div class="datos">
<div class="contenido">
<label for="dato1">Placa Bus</label>
<input id="placa" type="text" placeholder="Placa del Bus" minlength="6" maxlength="6" pattern="[A-Za-z]{10}" required>
</div>
<div class="contenido">
<label for="dato1">Latitud Bus</label>
<input id="latiBus" type="number" placeholder="Latitud del bus" required>
</div>
<div class="contenido">
<label for="dato1">Longitud Bus</label>
<input id="longiBus" type="number" placeholder="Latitud del bus" required>
</div>
<div class="contenido">
<label for="dato1">Identificación Conductor</label>
<input id="identificacionCon" type="number" placeholder="Identificación del conductor" required>
</div>
</div>
<div class="Cajaboton">
<button type="button" class="boton1" value="agreBus" name="agreBus" id="agregarBus" onclick="agregar_bus()">Agregar</button>
</div>
</div>
<!-- LINK JS -->
<script src="JS/main.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script> <!--Libreria Alerts-->
<script src="JS/alertas.js"></script> <!--Manejo Alertas-->
<script src="sweetalert2.all.min.js"></script> <!--Importar todas las herramientas-->
<script src="JS/ajax.js"></script> <!--Manejo AJAX-->
<!-- FIN LINK JS -->
</body>
</html>