-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
218 lines (184 loc) · 8.89 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link crossorigin="anonymous" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css" rel="stylesheet">
<script crossorigin="anonymous"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script>
<meta content="width=device-width, initial-scale=1" name="viewport">
</head>
<body>
<!-- cabezera -->
<div id="cabezera">
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarTogglerDemo01" aria-controls="navbarTogglerDemo01" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarTogglerDemo01">
<h1 class="text-light me-auto mb-2 mb-lg-0 display-3" >Hidden brand</h1>
<form class="d-flex" action="mapa.html">
<input class="form-control me-2" type="text" placeholder="usuario" aria-label="Search">
<input class="form-control me-2" type="password" placeholder="contraseña" aria-label="Search">
<button class="btn btn-outline-light me-3" type="submit">Entrar</button>
</form>
</div>
</div>
</nav>
</div>
<!-- formulario y slider -->
<div class="container-fluid mt-5">
<div class="row ms-lg-5 ">
<!-- slider -->
<div class="col-lg-7 col-sm-12" id="slider">
<div class="carousel slide" data-bs-ride="carousel" id="carouselExampleCaptions">
<div class="carousel-indicators">
<button aria-current="true" aria-label="Slide 1" class="active" data-bs-slide-to="0"
data-bs-target="#carouselExampleCaptions" type="button"></button>
<button aria-label="Slide 2" data-bs-slide-to="1" data-bs-target="#carouselExampleCaptions"
type="button"></button>
<button aria-label="Slide 3" data-bs-slide-to="2" data-bs-target="#carouselExampleCaptions"
type="button"></button>
</div>
<div class="carousel-inner" style="border-radius: 100px">
<div class="carousel-item active">
<img alt="..." class="d-block w-100" src="static/img/bridge-3825439_1920.jpg">
<div class="carousel-caption d-none d-md-block">
<h5>First slide label</h5>
<p>Some representative placeholder content for the first slide.</p>
</div>
</div>
<div class="carousel-item">
<img alt="..." class="d-block w-100" src="static/img/bird-7071662_1920.jpg">
<div class="carousel-caption d-none d-md-block">
<h5>Second slide label</h5>
<p>Some representative placeholder content for the second slide.</p>
</div>
</div>
<div class="carousel-item">
<img alt="..." class="d-block w-100" src="static/img/caballo.jpg">
<div class="carousel-caption d-none d-md-block">
<h5>Third slide label</h5>
<p>Some representative placeholder content for the third slide.</p>
</div>
</div>
</div>
<button class="carousel-control-prev" data-bs-slide="prev" data-bs-target="#carouselExampleCaptions"
type="button">
<span aria-hidden="true" class="carousel-control-prev-icon"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" data-bs-slide="next" data-bs-target="#carouselExampleCaptions"
type="button">
<span aria-hidden="true" class="carousel-control-next-icon"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
<!-- formulario de inicio de sesion -->
<div class="col-lg-5 col-sm-12 " id="formLogin">
<div class=" ms-lg-5 ms-sm-0 ">
<form>
<div class="mb-3 mt-4">
<h3>Registro de Usuario</h3>
</div>
<div class="mb-3 col-lg-9 col-sm-12">
<label class="form-label" for="nombre">Nombres</label>
<input aria-describedby="emailHelp" class="form-control " id="nombre" type="text">
</div>
<div class="mb-3 col-lg-9 col-sm-12">
<label class="form-label" for="apellidos">Apellidos</label>
<input class="form-control " id="apellidos" type="text">
</div>
<div class="mb-3 col-lg-9 col-sm-12">
<label class="form-label" for="direccion">Dirección</label>
<input class="form-control " id="direccion" type="text">
</div>
<div class="mb-3 col-lg-9 col-sm-12">
<label class="form-label" for="correo">Correo Electrónico</label>
<input class="form-control " id="correo" type="email">
</div>
<div class="mb-3 col-lg-9 col-sm-12">
<label class="form-label" for="contrasena">Contraseña</label>
<input class="form-control " id="contrasena" type="password">
</div>
<div class="mb-3 col-lg-9 col-sm-12">
<label class="form-label" for="contrasenaConf">Confirmar Contraseña</label>
<input class="form-control " id="contrasenaConf" type="password">
</div>
<div class="mb-3 col-lg-9 col-sm-12 ">
<p>ya se encuentra registrado? <a href="#" id="enlaceSesion">Iniciar Sesión</a></p>
</div>
<div>
<button class="btn btn-primary w-25" type="submit">Registrar</button>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- footer -->
<div class="mt-5 bg-dark text-center text-white bg-gradient">
<!-- iconos -->
<div class="container">
<section>
<!-- Facebook -->
<a class=" mt-5 btn btn-outline-light btn-floating m-1" href="#!" role="button">
<i class="bi bi-facebook"></i>
</a>
<!-- Twitter -->
<a class="mt-5 btn btn-outline-light btn-floating m-1" href="#!" role="button">
<i class="bi bi-twitter"></i>
</a>
<!-- Google -->
<a class="mt-5 btn btn-outline-light btn-floating m-1" href="#!" role="button">
<i class="bi bi-github"></i>
</a>
</section>
</div>
<!-- texto -->
<div class="container mt-5">
<section>
<!-- Section: Text -->
<section>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Sunt distinctio earum
repellat quaerat voluptatibus placeat nam, commodi optio pariatur est quia magnam
eum harum corrupti dicta, aliquam sequi voluptate quas.
</p>
</section>
</section>
</div>
<!-- enlaces -->
<div class="container mt-5">
<section>
<h5>Links</h5>
<ul class="list-unstyled ">
<li>
<a class="text-white" href="#!">Link 1</a>
</li>
<li>
<a class="text-white" href="#!">Link 2</a>
</li>
<li>
<a class="text-white" href="#!">Link 3</a>
</li>
<li>
<a class="text-white" href="#!">Link 4</a>
</li>
</ul>
</section>
</div>
<!-- copyright -->
<div class=" mt-5 p-3" style="background-color: rgba(0, 0, 0, 0.2);">
<section>
© 2022 Copyright:
</section>
</div>
</div>
</body>
</html>