-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
105 lines (85 loc) · 4.91 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
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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title> Reto </title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
</head>
<body>
<!--[if lte IE 9]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<!-- Add your site or application content here -->
<section id="seccion_inicio" class="">
<div class="container">
<br>
<br>
<br>
<div class="form-group">
<input type="text" class="form-control" id="txtmail_login" placeholder="Mail" />
</div>
<div class="form-group">
<input type="password" class="form-control" id="txtusername_login" placeholder="Username" />
</div>
<button class="btn btn-block btn-primary" id="btn_login">Iniciar</button>
<button class="btn btn-block btn-primary" id="btn_registro">Registrarse</button>
</section>
<section id="seccion_registro" style="display: none;">
<div class="container">
<h1>Registro</h1>
<br>
<input class="form-control" name="nom" id="txtnombre" placeholder="Nombre" required="" type="text">
<br>
<input class="form-control" name="username" id="txtusername" placeholder="Username" required="" type="text">
<br>
<input class="form-control" name="mail" id="txtmail" placeholder="Mail" required="" type="text">
<br>
<input class="form-control" name="telefono" id="txttelefono" placeholder="Telefono Celular" required="" type="text">
<br>
<input class="form-control" name="sitio_web" id="txtsitio_web" placeholder="Sitio Web" required="" type="text">
<br>
<h4>Datos Dirección</h4>
<input class="form-control" name="calle" id="txtcalle" placeholder="Calle" required="" type="text">
<br>
<input class="form-control" name="num_apartamento" id="txtnum_apartamento" placeholder="Numero de apartamento" required="" type="text">
<br>
<input class="form-control" name="ciudad" id="txtciudad" placeholder="Ciudad" required="" type="text">
<br>
<input class="form-control" name="codigo_postal" id="txtcodigo_postal" placeholder="Código Postal" required="" type="text">
<br>
<h4>Datos Geocodificación</h4>
<input class="form-control" name="latitud" id="txtlatitud" placeholder="Latitud" required="" type="number">
<br>
<input class="form-control" name="longitud" id="txtlongitud" placeholder="Longitud" required="" type="number">
<br>
<h4>Datos Compañia</h4>
<input class="form-control" name="nombre_compania" id="txtnombre_compania" placeholder="Nombre de la compañia" required="" type="text">
<br>
<input class="form-control" name="lema" id="txtlema" placeholder="Lema de la compañia" required="" type="text">
<br>
<input class="form-control" name="bs" id="txtbs" placeholder="Bs" required="" type="text">
<br>
<button id="btn_registrar" class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button>
</div>
</section>
<section id="seccion_principal" style="display: none;">
<h1>Has iniciado sesión</h1>
</section>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="js/vendor/modernizr-3.5.0.min.js"></script>
<script src="https://code.jquery.com/jquery-1.8.2.min.js" integrity="sha256-9VTS8JJyxvcUR+v+RTLTsd0ZWbzmafmlzMmeZO9RFyk=" crossorigin="anonymous"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
</body>
</html>