-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (48 loc) · 1.72 KB
/
Copy pathindex.html
File metadata and controls
50 lines (48 loc) · 1.72 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="css/estilos.css">
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<title>Formularios</title>
</head>
<body>
<div class="contenedor-formulario">
<div class="wrap">
<form action="" class="formulario" name="formulario_registro" method="get">
<div>
<div class="input-group">
<input type="text" id="nombre" name="nombre">
<label class="label" for="nombre">Nombre:</label>
</div>
<div class="input-group">
<input type="email" id="correo" name="correo">
<label class="label" for="correo">Correo:</label>
</div>
<div class="input-group">
<input type="password" id="pass" name="pass">
<label class="label" for="pass">Contraseña:</label>
</div>
<div class="input-group">
<input type="password" id="pass2" name="pass2">
<label class="label" for="pass2">Repetir Contraseña:</label>
</div>
<div class="input-group radio">
<input type="radio" name="sexo" id="hombre" value="Hombre">
<label for="hombre">Hombre</label>
<input type="radio" name="sexo" id="mujer" value="Mujer">
<label for="mujer">Mujer</label>
</div>
<div class="input-group checkbox">
<input type="checkbox" name="terminos" id="terminos" value="true">
<label for="terminos">Acepto los Terminos y Condiciones</label>
</div>
<input type="submit" id="btn-submit" value="Enviar">
</div>
</form>
</div>
</div>
<script src="js/formulario.js"></script>
</body>
</html>