-
Notifications
You must be signed in to change notification settings - Fork 0
/
account.html
92 lines (82 loc) · 3.07 KB
/
account.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>**Jugador numero 12**</title>
<!-- ENLAZAMOS HOJA DE ESTILO -->
<link rel="stylesheet" type="text/css" href="./css/gen.css" />
</head>
<body>
<div id="genLayer">
<!-- DIVISION DE CABECERA -->
<div id="headBox">
<a name="top">
<img src="./img/bannerPrototipo.gif" alt="banner" id="topBanner" /> </a>
</div>
<!-- DIVISION DEL MENU IZQUIERDO -->
<div id="leftMenuBar">
<div id='cssmenu'>
<ul>
<li><a href='profile.html'><span>Perfil</span></a></li>
<li><a href='skills.html'><span>Habilidades</span></a></li>
<li><a href='actions.html'><span>Acciones</span></a></li>
<li><a href='fans.html'><span>Afición</span></a></li>
<li><a href='stats.html'><span>Estadísticas</span></a></li>
<li><a href='classification.html'><span>Clasificación</span></a></li>
<li><a href='nextgame.html'><span>Partido</span></a></li>
</ul>
</div>
</div>
<!-- DIVISION CENTRAL/CONTENIDO/BANNER -->
<div id="contentSection">
<table width="100%" border="0" cellpadding="5px">
<tr style="background-color: #c4c6f5">
<td colspan="2" align="center"><h3>DATOS DE USUARIO1</h3></td>
</tr>
<tr style="background-color: #7ee0d1">
<td>Nombre:</td>
<td>Etelvino</td>
</tr>
<tr style="background-color: #a4e1c8">
<td>Apellido:</td>
<td>Martínez</td>
</tr>
<tr style="background-color: #7ee0d1">
<td>Nombre de usuario:</td>
<td>usuario1</td>
</tr>
<tr style="background-color: #a4e1c8">
<td>E-mail:</td>
<td>[email protected]</td>
</tr>
<tr style="background-color: #7ee0d1">
<td>Direccion:</td>
<td>C/Falsa Nº 123 2ºB, CP:34287, Jubilandia</td>
</tr>
<tr style="background-color: #a4e1c8">
<td>País:</td>
<td>Atlántida</td>
</tr>
<tr style="background-color: #7fe1ff">
<td colspan="2" align="center"><a href="#">Cambiar contraseña</a></a></td>
</tr>
</table>
</div>
<!-- DIVISION DEL MENU DERECHO -->
<div id="rightMenuBar">
<img width="150px" src="./img/EstadoJugador.gif" style="padding-bottom: 10px">
<div id='cssmenu'>
<ul>
<li><a href='account.html'><span>Mi Cuenta</span></a></li>
<li><a href='messages.html'><span>Mensajes (0)</span></a></li>
<li><a href='index.html'><span>Logout</span></a></li>
</ul>
</div>
</div>
<!-- DIVISION DEL PIE DE PÁGINA -->
<div id="bottomBox">
<a href="#top">Ir arriba</a>
</div>
</div> <!-- End GenLayer -->
</body>
</html>