-
Notifications
You must be signed in to change notification settings - Fork 3
/
profile.html
127 lines (110 loc) · 4.48 KB
/
profile.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Inicio</title>
<link rel="stylesheet" href="css/estilos.css" type="text/css" media="screen">
<link rel="stylesheet" href="css/resize.css" type="text/css" media="screen">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Lato|Lora|Spectral+SC:300" rel="stylesheet">
<script type="application/javascript" src="js/jquery-3.2.1.min.js"></script>
<script type="application/javascript" src="js/eventos.js"></script>
</head>
<body>
<div id="contenedor">
<header>
<div id="logotipo">
<a href="index.html">
<img src="images/logo.png">
</a>
<span>Florish y Blotts</span>
</div>
<div id="perfil">
<div id="nombre_usuario"></div>
<a><img id="usuario" src="images/user.png"></a>
<a href="shopping_list.html"><img id="carrito" src="images/shopping-cart.png"></a>
</div>
<a id="menu_button"></a>
</header>
<nav>
<hr>
<ul>
<li><a href="index.html">Inicio</a></li>
<li><a href="producto.html">Productos</a></li>
<li><a href="about.html">Acerca de</a></li>
</ul>
<hr>
</nav>
<!-- Fin de header -->
<section id="content_profile">
<div id="profile">
<h2>Perfil</h2>
<div id="logout">
<button id="button_logout">Cerrar Sesión</button>
</div>
<form id="form_profile" method="post" onsubmit="return updatePassword(this);">
<table>
<tr>
<td colspan="2" id="validacion_update"></td>
</tr>
<tr>
<td>
Usuario:
</td>
<td><input name="user_profile" id="user_profile" type="text" readonly="readonly"></td>
</tr>
<tr>
<td>
Nombre:
</td>
<td><input name="name_profile" id="name_profile" required type="text" readonly="readonly"></td>
</tr>
<tr>
<td>
Correo electrónico:
</td>
<td><input name="email_profile" id="email_profile" required type="email" readonly="readonly"></td>
</tr>
<tr>
<td>
Telefono:
</td>
<td><input name="telephone_profile" id="telephone_profile" required type="tel" pattern="[0-9]{10}" readonly="readonly"></td>
</tr>
<tr id="new_password">
<td>
Nueva Contraseña:
</td>
<td><input name="password_profile" id="password_profile" type="password" required ></td>
</tr>
<tr id="new_password_repeat">
<td>
Repite la contraseña:
</td>
<td><input name="password_repeat_profile" id="password_repeat_profile" required type="password"></td>
</tr>
<tr>
<td colspan="2">
<input id="button_update_password" type="submit" value="Cambiar contraseña">
</td>
</tr>
</table>
</form>
</div>
</section>
<!-- Footer -->
<footer>
<hr>
<div id="social">
<ul id="red_social">
<li><a href="#" title="facebook"><img src="images/facebook.png"></a></li>
<li><a href="#" title="twitter"><img src="images/twitter.png"></a></li>
</ul>
</div>
<div id="derechos">
<small>©2017 Librería Flourish y Blotts. Todos los derechos reservados.</small>
</div>
</footer >
</div>
</body>
</html>