-
Notifications
You must be signed in to change notification settings - Fork 0
/
moto-go.html
225 lines (192 loc) · 7.39 KB
/
moto-go.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MOTO GO USUARIO</title>
<style>
/* Estilo global */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #0066cc; /* Fondo azul fuerte */
color: white;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
/* Contenedor del formulario */
.form-container {
background-color: #fff;
padding: 20px;
border-radius: 10px;
border: 2px solid #ff6600; /* Bordes naranjas */
width: 100%;
max-width: 600px;
}
/* Título */
h1 {
text-align: center;
text-transform: uppercase;
margin-bottom: 20px;
color: #ff6600; /* Título en color naranja */
font-size: 28px; /* Tamaño del título */
font-weight: bold; /* Negrita */
}
/* Etiquetas y inputs */
label {
display: block;
margin: 10px 0 5px;
font-weight: bold;
}
input {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border-radius: 5px;
border: 1px solid #ccc;
opacity: 0.7;
}
input[type="text"], input[type="tel"] {
background-color: #e0f7fa; /* Fondo verde menta */
}
input:focus {
border-color: #ff6600;
outline: none;
}
/* Botones */
button {
width: 100%;
padding: 10px;
background-color: #ff6600;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:disabled {
background-color: #cccccc;
cursor: not-allowed;
}
.ubicacion button {
margin-bottom: 15px; /* Separar el botón de ubicación del botón de enviar */
}
/* Casilla de términos */
.terms-container {
margin-top: 15px;
display: flex;
align-items: center;
}
.terms-container input {
margin-right: 10px;
}
.terms-container label {
font-weight: normal;
}
/* Enlace de ayuda */
.help-link {
margin-top: 15px;
text-align: center;
}
.help-link a {
color: #ff6600;
text-decoration: none;
}
.help-link a:hover {
text-decoration: underline;
}
/* Responsividad */
@media (max-width: 600px) {
.form-container {
padding: 15px;
}
}
</style>
</head>
<body>
<div class="form-container">
<h1>MOTO GO USUARIOS</h1>
<form id="motoForm">
<label for="nombre">usuario:</label>
<input type="text" id="nombre" placeholder="Escribe tu nombre" required>
<label for="barrio">Estoy en.:</label>
<input type="text" id="barrio" placeholder="Donde estas ?" required>
<label for="destino">Necesito ir a nombre lugar:</label>
<input type="text" id="destino" placeholder="Destino" required>
<label for="telefono">Mi teléfono N. Es:</label>
<input type="tel" id="telefono" placeholder="Número de teléfono" required>
<div class="ubicacion">
<button type="button" id="locationButton">Ubicación</button>
<p id="locationStatus" style="color: green; display: none;">Ubicación exitosa</p>
</div>
<button type="submit" id="submitButton" disabled>Solicitar ahora</button>
<div class="terms-container">
<input type="checkbox" id="terminos" required>
<label for="terminos">Acepto los <a href="privacidad.html" target="_blank">términos y condiciones</a></label>
</div>
</form>
<div class="help-link">
<p><a href="https://wa.me/573127305122?text=Hola%21%20MOTO%20Go%20estoy%20necesito%20ayuda" target="_blank">¿Tiene problema para enviar una solicitud?</a></p>
</div>
</div>
<script>
document.addEventListener("DOMContentLoaded", function () {
const locationButton = document.getElementById("locationButton");
const locationStatus = document.getElementById("locationStatus");
const submitButton = document.getElementById("submitButton");
const termsCheckbox = document.getElementById("terminos");
const form = document.getElementById("motoForm");
let userLocation = ""; // Variable para guardar la ubicación
// Activar el botón de envío solo si los términos están aceptados
termsCheckbox.addEventListener("change", function () {
submitButton.disabled = !termsCheckbox.checked;
});
// Función para obtener la ubicación del usuario
locationButton.addEventListener("click", function () {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function (position) {
const lat = position.coords.latitude;
const lon = position.coords.longitude;
userLocation = `https://www.google.com/maps?q=${lat},${lon}`;
locationStatus.style.display = 'block'; // Mostrar "Ubicación exitosa"
}, function () {
alert("No se pudo obtener la ubicación. Por favor, inténtalo de nuevo.");
locationStatus.style.display = 'none';
userLocation = ""; // Asegúrate de que no haya una ubicación inválida
});
} else {
alert("Geolocalización no soportada por tu navegador.");
}
});
// Validar que la ubicación exista antes de enviar
form.addEventListener("submit", function (e) {
e.preventDefault();
if (!userLocation) {
alert("Debe obtener su ubicación antes de enviar la solicitud.");
return;
}
const nombre = document.getElementById("nombre").value;
const barrio = document.getElementById("barrio").value;
const destino = document.getElementById("destino").value;
const telefono = document.getElementById("telefono").value;
const mensaje = `
USUARIO:
Nombre: ${nombre}
Estoy en: ${barrio}
Voy a: ${destino}
Teléfono: ${telefono}
Mi ubicación: ${userLocation}
`;
const whatsappURL = `https://wa.me/573127305122?text=${encodeURIComponent(mensaje)}`;
window.open(whatsappURL, "_blank");
});
});
</script>
</body>
</html>