-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.html
258 lines (238 loc) · 10.3 KB
/
config.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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
<!DOCTYPE html>
<html lang="en">
<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 href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.2/font/bootstrap-icons.css">
<link rel="stylesheet" href="style.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> <!-- Reloj -->
<title>BiciCUT - Configuración</title>
<link rel="icon" href="img/title_icon.png" type="image/icon type">
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg bg-dark navbar-dark py-3 fixed-top">
<div class="container d-flex justify-content-around">
<img src="img/title_icon.png" alt="" width="40px" style="margin-right: 8px;">
<a href="index.html" class="navbar-brand"
style="font-size: 30px; font-weight: bold; color: rgb(19, 226, 122);">BiciCUT</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navmenu">
<span class="navbar-toggler-icon align-items-center align-text-center"></span>
</button>
<div class="collapse navbar-collapse align-text-center " id="navmenu">
<ul class="navbar-nav mx-auto align-items-center">
<li class="space-vr">|</li>
<li class="nav-item mx-5">
<a href="inicio.html" class="nav-link">Inicio</a>
</li>
<li class="space-vr">|
</li>
<li class="nav-item mx-5">
<a href="reportes.html" class="nav-link">Reportes</a>
</li>
<li class="space-vr">|
</li>
<li class="nav-item mx-5">
<a href="stats.html" class="nav-link">Estadísticas
</a>
</li>
<li class="space-vr">|
</li>
<li class="nav-item mx-5">
<a href="#" class="nav-link disabled">Cuenta
</a>
</li>
<li class="space-vr">|
</li>
</ul>
<div class="d-grid gap-2 d-md-flex justify-content-md-center">
<a href="index.html" class="btn btn-outline-light">Cerrar Sesión</a>
</div>
</div>
</div>
</nav>
<section id="configuracion" class="bg-dark text-light p-5 p-lg-0 pt-lg-5 text-center text-sm-start">
<div class="container">
<div class="d-sm-flex align-items-center justify-content-between">
<div class="col-md">
<center>
<h1>Detalles de la <span class="text" style="color: rgb(19, 226, 122);"> Cuenta </span> del Usuario </h1>
</center>
</div>
</div>
</div>
<br>
<hr>
</section>
<section class="p-5">
<br>
<div class="container-fluid">
<div class="align-items-center justify-content-between" style="text-align:center">
<div style="text-align:left">
<!-- Account details card-->
<div class="card mb-4">
<div class="card-header" style="text-align:left">@Usuario</div>
<div class="card-body">
<form method="POST" action="">
<!-- Form Group (codigo)-->
<div class="mb-3">
<label class="small mb-1" for="codigo">Código</label>
<input class="form-control" id="codigo" type="text" value="000000000" disabled="">
</div>
<!-- Form Row-->
<div class="row gx-3 mb-3">
<!-- Form Group (nombre)-->
<div class="col-md-8">
<label class="small mb-1" for="nombre">Nombre</label>
<input class="form-control" id="nombre" name="nombre" type="text"
placeholder="Ingresa tu nombre completo" value="Nombre Completo" required="">
</div>
<!-- Form Group (sexo)-->
<div class="col-md-4">
<label class="small mb-1" for="sexo">Sexo</label>
<select class="form-control" id="sexo" name="sexo" required="">
<option></option>
<option value="Mujer">Mujer</option>
<option value="Hombre" selected="">Hombre</option>
</select>
</div>
</div>
<!-- Form Group (email)-->
<div class="mb-3">
<label class="small mb-1" for="inputEmailAddress">Email</label>
<input class="form-control" id="correo" name="correo" type="email"
placeholder="Ingresa tu dirección de correo" value="ejemplo@gmail.com" required="">
</div>
<!-- Form Row-->
<div class="row gx-3 mb-3">
<!-- Form Group (tel)-->
<div class="col-md-6">
<label class="small mb-1" for="telefono">Teléfono</label>
<input class="form-control" id="telefono" name="telefono" type="tel" maxlength="10"
placeholder="Teléfono" value="0000000000">
</div>
<!-- Form Group (cumpleaños)-->
<div class="col-md-6">
<label class="small mb-1" for="cumple">Cumpleaños</label>
<input class="form-control" id="nacimiento" type="date" name="nacimiento" value="0000-00-00">
</div>
</div>
<!-- Save changes button-->
<button class="btn btn-primary lift" type="submit">Guardar cambios</button>
</form>
</div>
</div>
</div>
<br>
</div>
</div>
</section>
<!-- Footer INICIO -->
<footer class="text-center text-lg-start bg-dark text-muted ">
<!-- Section: Links en pantalla grande -->
<br>
<section class="d-none d-md-block">
<div class="container text-center text-md-start mt-2">
<!-- Grid row -->
<div class="row mt-1">
<!-- Grid column -->
<div class="col-md-2 col-lg-3 col-xl-4 mx-auto mb-1">
<h6 class=" fw-bold mb-4 text-start align-text-bottom" style="color:rgb(51, 182, 243);">
Administrado por: Centro Universitario de Tonalá
<a href="privacidad.html" class="nav-link text-muted">Política de Privacidad</a>
</h6>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-2 col-lg-3 col-xl-3 mx-auto mb-1">
<!-- Links -->
<h6 class="mb-4 text-center align-text-bottom">
<p class="fw-bold" style="color:rgb(51, 182, 243);">Derechos Reservados Universidad de Guadalajara © 2022
</p>
<p class="fw-bold" style="color:rgb(51, 182, 243);">Sitio desarrollado por alumnos de:
</p>
Licenciatura en Ingeniería en Ciencias Computacionales
</h6>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-2 col-lg-3 col-xl-4 mx-auto mb-1">
<!-- Links -->
<h6 class=" mb-4 text-end align-text-bottom">
<p class="fw-bold" style="color:rgb(51, 182, 243);">Servicios Generales de
Administración</p>
<p>Campus CUTonalá Av. Nuevo Periférico No. 555 Ejido San José Tateposco, C.P. 45425,
Tonalá Jalisco, México
</p>
<p>+52 (33) 20 00 23 00 Ext. 64007 y 64044</p>
</h6>
</div>
<!-- Grid column -->
</div>
<!-- Grid row -->
</div>
</section>
<!-- Section: Links en pantalla grande -->
<!-- Section: Links en pantalla chica -->
<section class=" d-md-none">
<div class="container text-center text-md-start mt-2">
<!-- Grid row -->
<div class="row mt-1">
<!-- Grid column -->
<div class="col-md-2 col-lg-3 col-xl-4 mx-auto mb-1">
<h6 class=" fw-bold mb-4 text-center align-text-center" style="color:rgb(51, 182, 243);">
Administrado por: Centro Universitario de Tonalá
<a href="privacidad.html" class="nav-link text-muted">Política de Privacidad</a>
</h6>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-2 col-lg-3 col-xl-4 mx-auto mb-1">
<!-- Links -->
<h6 class=" mb-4 text-center align-text-center">
<p class="fw-bold" style="color:rgb(51, 182, 243);">Servicios Generales de
Administración</p>
<p>
Copyright © CUTONALÁ 2022
</p>
<p>+52 (33) 20 00 23 00 Ext. 64007 y 64044</p>
</h6>
</div>
<!-- Grid column -->
</div>
<!-- Grid row -->
</div>
</section>
<!-- Section: Links en pantalla grande -->
<!-- Copyright -->
<div class="text-center p-4" style="background-color: rgba(0, 0, 0, 0.05);">
Derechos reservados: Universidad de Guadalajara © 2022
</div>
<!-- Copyright -->
</footer>
<!-- Footer FINAL -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4"
crossorigin="anonymous"></script>
<!-- Reloj-->
<script>
$(document).ready(function () {
setInterval(function () {
var hours = new Date().getHours();
$(".hours").html((hours < 10 ? "0" : "") + hours);
}, 1000);
setInterval(function () {
var minutes = new Date().getMinutes();
$(".min").html((minutes < 10 ? "0" : "") + minutes);
}, 1000);
setInterval(function () {
var seconds = new Date().getSeconds();
$(".sec").html((seconds < 10 ? "0" : "") + seconds);
}, 1000);
});
</script>
</body>
</html>