-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevalform.html
More file actions
38 lines (35 loc) · 805 Bytes
/
evalform.html
File metadata and controls
38 lines (35 loc) · 805 Bytes
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="form.css">
</head>
<body>
<h1>Registro</h1>
<form>
<div>
<label for='nombre'>Nombre</label><br>
<input type='text' id='nombre' value="Su primer nombre">
</div>
<div>
<label for='apellido'>Apellido</label><br>
<input type='text' id='apellido' value="Su apellido completo">
</div>
<div>
<label for='fecha'>Fecha de nacimiento</label><br>
<input type='date' id='fecha'>
</div>
<div>
<label for='correo'>Correo</label><br>
<input type='email' id='correo' value="email@email.com">
</div>
<div>
<label for='contrasena'>Contraseña</label><br>
<input type='password' id='contrasena' value="xxxxxx">
</div>
<div>
<input type='reset' value='Cancelar'>
<input type='submit' value='Registrarse'>
</div>
</form>
</body>
</html>