-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathform-Botcam Full stack.html
48 lines (40 loc) · 1.61 KB
/
form-Botcam Full stack.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Botcam Full stack - Formulario de Registro</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-xOolHFLEh07PJGoPkLv1IbcEPTNtaed2xpHsD9ESMhqIYd0nLMwNLD69Npy4HI+N" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Formulario de Registro</h1>
<form>
<div class="form-group">
<label for="nombre">Nombre completo:</label>
<input type="text" class="form-control" id="nombre" name="nombre"required>
</div>
<div class="form-group">
<label for="apellido">Apellido: </label>
<input type="text" class="form-control" id="apellido" name="apellido" required>
</div>
<div class="form-group">
<label for="email">Correo electrónico:</label>
<input type="email" class="form-control" id="email" name="email" required>
</div>
<div class="form-group">
<label for="fecha_nacimiento">Fecha de nacimiento:</label>
<input type="date" class="form-control" id="fecha_nacimiento" name="fecha_nacimiento">
</div>
<label for="pais">País:</label>
<select id="pais" name="pais" required>
<option value="ES">España</option>
<option value="MX">México</option>
<option value="US">Estados Unidos</option>
<option value="BR">Brasil</option>
<option value="AR">Argentina</option>
</select>
<button type="submit" class="btn btn-primary">Enviar</button>"
</form>
</body>
</html>