Dia 19
This commit is contained in:
@@ -0,0 +1,73 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Formularios 2</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Formulario de registro</h1>
|
||||
<form method="get" action="../gracias.html">
|
||||
|
||||
<p>
|
||||
<label>Nombre
|
||||
<input type="text" name="nombre" placeholder="Escribe tu nombre...">
|
||||
</label>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<label>Apellidos
|
||||
<input type="text" name="apellidos" placeholder="Escribe tus apellidos...">
|
||||
</label>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<label>Sexo</label>
|
||||
<input type="radio" name="sexo" value="h">Hombre
|
||||
<input type="radio" name="sexo" value="m">Mujer
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<label>Correo
|
||||
<input type="email" name="email" placeholder="email...">
|
||||
</label>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<label for="poblacion">Poblacion</label>
|
||||
<select name="poblacion" required>
|
||||
<option disabled selected>-- Selecciona --</optiondisabl>
|
||||
<option value="a coruña">A Coruña</option>
|
||||
<option value="lugo">Lugo</optionselected>
|
||||
<option value="orense">Ourense</option>
|
||||
<option value="pontevedra">Pontevedra</option>
|
||||
</select>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<label> Descripcion
|
||||
<textarea name="condiciones" cols="40" rows="6"></textarea>
|
||||
</label>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<label>
|
||||
<input type="checkbox" name="publicidad">Deseo recibir informacion sobre novedades y ofertas
|
||||
</label>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<label>
|
||||
<input type="checkbox" name="condiciones" required>Declaro haber leido y aceptar las condiciones
|
||||
generales del
|
||||
programa...
|
||||
</label>
|
||||
</p>
|
||||
|
||||
<input type="submit" name="enviar" value="Enviar" />
|
||||
</form>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user