-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path06_Formulario de registro.html
64 lines (61 loc) · 3 KB
/
06_Formulario de 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
<!DOCTYPE html>
<html lang="es">
<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">
<title>Un formulario</title>
</head>
<body>
<h2>Formulario de registro</h2>
<form action="show-data.html" target="_blank">
<fieldset>
<legend>Datos personales</legend>
<label for="firstname">Nombre: </label>
<input size="30" type="text" name="firstname" placeholder="Ingrese su nombre aqui...">
<label for="lastname">Apellido:</label>
<input size="30" type="text" name="lastname" placeholder="Ingrese su apellido aqui...">
<br><br>
<label for="street">Direccion:</label>
<input type="text" name="address" placeholder="Ingrese su dirección aqui...">
<label for="city">Ciudad: </label>
<input type="text" name="city" value="C.A.B.A.">
<br><br>
<label for="zipcode">Código Postal:</label>
<input type="text" name="zipcode" placeholder="Ingrese su codigo postal aqui...">
<label for="telefono">Telefono: </label>
<input type="tel" name="telefono" placeholder="Ingrese su telefono aqui ....">
<br><br>
<label for="BirthDate">Fecha Nac.(mm/dd/yyyy): </label>
<input type="date" name="birthdate">
<p>Género (Radio)
<input type="radio" name="gender" value="hombre" checked>Hombre
<input type="radio" name="gender" value="Mujer">Mujer
<input type="radio" name="gender" value="Otro"> Otro
</p>
</fieldset>
<p> Conocimientos previos: (checkbox)
<input type="checkbox" name="conocimientos" value="HTML"> HTML
<input type="checkbox" name="conocimientos" value="CSS"> CSS
<input type="checkbox" name="conocimientos" value="BOOTSTRAP"> Bootstrap
<input type="checkbox" name="conocimientos" value="Javascript"> Javascript
<input type="checkbox" name="conocimientos" value="BaseDeDatos"> Base de Datos
<input type="checkbox" name="conocimientos" value="Python"> Python
<input type="checkbox" name="conocimientos" value="Django"> Django
</p>
<label for="estudios">Estudios: (Select)</label>
<select id="estudios" name="estudios">
<option value="primaria">Primaria</option>
<option value="secundaria">Secundaria</option>
<option value="terciario">Terciario</option>
<option value="universitario">Universitario</option>
</select>
<br>
<label for="comentarios">Comentarios:</label> <textarea name="comentarios" rows="5" cols="30"></textarea>
<br><br>
<input type="submit" value="Enviar">
<button type="reset">Reset</button>
</form>
<p>Si usted hace click en el boton "Enviar", la informacion sera enviada a la pagina "show_data.html".</p>
</body>
</html>