-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistro.html
67 lines (57 loc) · 1.98 KB
/
registro.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="styles/estilos.css" rel="stylesheet">
<title>Formulario de Registro</title>
</head>
<body>
<header >
<nav>
<ul>
<li><a href="index.html">Inicio</a></li>
<li><a href="#news">Libros</a></li>
<li><a href="#contact">Carrito de compras</a></li>
<li><a href="#about">Sobre nosotros
</a></li>
</ul>
</nav>
<div class="overlay">
<h3 >Registro</h3>
<form action="/send_to_action_page" method="post" id="form-registro" >
<!-- id added as instructed for sprint 1 -->
<ul>
<li>
<label for="name">Nombre</label><br>
<input type="text" id="nombre" name="user_name" onblur="checkNombre()"><br>
</li>
<li>
<label for="last_name">Apellido</label><br>
<input type="text" id="apellidos" name="user_last_name" onblur="checkApellido()"><br>
</li>
<li>
<label for="phone" >Teléfono</label><br>
<input type="number" id="telefono" name="user_phone_number" onblur="checkTelefono()" ><br>
</li>
<li>
<label for="mail">Correo</label><br>
<input type="email" id="correo" name="user_email" onblur="checkCorreo()" ><br>
</li>
<li>
<label for="pswd">Contraseña</label><br>
<input type="password" id="password" name="user_password"
onblur="checkContrasena()" > <br>
</li>
<li>
<br>
<input type="submit" id="btn-submit-form" value="Registrar" >
<!-- input tag used as instructed for sprint 1 -->
</li>
</ul>
</form>
<script src="scripts/form.js"></script>
</div>
</header>
</body>
</html>