-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
47 lines (44 loc) · 1.49 KB
/
index.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
<!doctype html>
<html lang="es">
<!--
Plantilla inicial de Bootstrap 4
@author parzibyte
Visita: parzibyte.me/blog
-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Enviar ubicación del dispositivo a PHP">
<meta name="author" content="Parzibyte">
<title>Enviar ubicación del dispositivo a PHP</title>
<!-- Cargar el CSS de Boostrap-->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous">
<!-- Cargar estilos propios -->
<link href="style.css" rel="stylesheet">
</head>
<body>
<!-- Termina la definición del menú -->
<main role="main" class="container">
<div class="row">
<!-- Aquí pon las col-x necesarias, comienza tu contenido, etcétera -->
<div class="col-12">
<h1>Enviar ubicación del dispositivo a PHP</h1>
<a href="//parzibyte.me/blog" target="_blank">By Parzibyte</a>
<br>
<button id="btnIniciar" class="btn btn-info">Iniciar</button>
<button id="btnDetener" class="btn btn-danger">Detener</button>
<br>
<strong>Latitud: </strong> <span id="latitud"></span>
<strong>Longitud: </strong> <span id="longitud"></span>
<br>
<a href="./ubicaciones.txt">Ver ubicaciones</a>
<br>
<pre id="log"></pre>
</div>
</div>
</main>
<script src="script.js">
</script>
</body>
</html>