Untitled
unknown
plain_text
4 years ago
1.0 kB
9
Indexable
<!DOCTYPE html>
<html lang="en">
<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>Register</title>
</head>
<body>
<h1>Bienvenido</h1>
<p>Complete el formulario para registrarse</p>
<form action="POST">
<label for="name">
<input type="text" id="name" name="name" placeholder="Nombre">
</label>
<label for="lastname">
<input type="text" id="lastname" name="lastname" placeholder="Apellido">
</label>
<label for="email">
<input type="email" name="email" id="email">
</label>
<label for="age">
<input type="text" id="age" name="age" placeholder="Edad">
</label>
<label for="pass">
<input type="password" name="pass" id="pass" placeholder="Contraseña">
</label>
<button type="submit">Enviar</button>
</form>
</body>
</html>Editor is loading...