-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistro.html
More file actions
115 lines (111 loc) · 4.41 KB
/
Copy pathregistro.html
File metadata and controls
115 lines (111 loc) · 4.41 KB
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
<!DOCTYPE html>
<!-- VALIDADA -->
<html lang="es">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="generator" content="Sublime-text" />
<meta name="author" content="Jesús Bernabeu Sáez" />
<meta name="keywords" content="HTML5, web" />
<meta name="description" content="Pagina de registro de AlexelcapoRutas" />
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/fontello-embedded.css">
<link rel="stylesheet" type="text/css" href="css/fontello.css">
<link rel="stylesheet" type="text/css" href="css/fontello-codes.css">
<link rel="stylesheet" type="text/css" href="css/fontello-ie7-codes.css">
<link rel="stylesheet" type="text/css" href="css/fontello-ie7.css">
<link rel="stylesheet" type="text/css" href="css/animation.css">
<title>AlexelcapoRutas</title>
<link href="estilo.css" rel="stylesheet"/>
</head>
<body>
<header>
<a href="index.html">
<img id="logo" src="logo.png" alt="Logo">
</a>
<div>
<a href="index.html">
<h1>AR - AlexelcapoRutas</h1>
<p>Tu página de rutas</p>
</a>
</div>
</header>
<nav>
<input type="checkbox" id="ckbMenu">
<ul>
<li><label for="ckbMenu">≡</label></li>
<li>
<a href="index.html" class="icon-bank">
Inicio
</a>
</li>
<li>
<a href="buscar.html" class="icon-search">
Buscar
</a>
</li>
<li>
<a href="nueva.html" class="icon-upload">
Nueva ruta
</a>
</li>
<li>
<a href="#" class="icon-logout">
Logout
</a>
</li>
<li>
<a href="login.html" class="icon-login">
Login
</a>
</li>
<li>
<a href="registro.html" class="icon-paper-plane">
Registro
</a>
</li>
</ul>
</nav>
<section>
<h2>Regístrate con tus datos</h2>
<div>
<form><fieldset>
<!-- Username -->
<p>
<label for="login">Login:</label>
<input type="text" id="login" required autofocus placeholder="solo numeros y letras" pattern="^([a-zA-Z]+[0-9]{0,4}){4,20}$">
</p>
<!-- Password -->
<p>
<label for="pass">Contraseña:</label>
<input type="password" id="pass" required minlength="6" maxlength="16" placeholder="Entre 6-20 caracteres" pattern="^([a-zA-Z]+[0-9]{0,4}){6,20}$">
</p>
<p>
<label for="pass2">Confirmar contraseña:</label>
<input type="password" id="pass2" minlength="6" maxlength="16" placeholder="Entre 6-20 caracteres" pattern="^([a-zA-Z]+[0-9]{0,4}){6,20}$">
</p>
<p>
<label for="username">Nombre completo</label>
<input type="text" id="username" required minlength="8" maxlength="16">
</p>
<p>
<label for="mail">Email:</label>
<input type="email" id="mail" required minlength="8" maxlength="16" placeholder="ejemplo@mail.com">
</p>
<p>
<label for="fotoPerfil">Foto de perfil:</label>
<input type="image" accept="image/*" name="fotoPerfil" id="fotoPerfil" alt="fotoPerfil" src="descarga.jpeg">
<input type="file" accept="image/*" name="fotoPerfil" id="fotoPerfil" alt="fotoPerfil" >
</p>
<input type="submit" value="Registrarse">
<button type="reset">Reset</button>
<!-- Submit Button -->
</fieldset></form>
</div>
</section>
<footer>
<p>Copyright <time datetime="2021">2021</time> <a href="jbs@gmail.com">Jesus Bernabeu</a></p>
<p><a href="acerca.html" class="link">Mas informacion</a></p>
<button class="boton_personalizado" role="link" onclick="window.location='registro.html'">Inicio</button>
</footer>
</body>
</html>