-
Notifications
You must be signed in to change notification settings - Fork 319
Expand file tree
/
Copy pathforms.html
More file actions
115 lines (115 loc) · 3.73 KB
/
Copy pathforms.html
File metadata and controls
115 lines (115 loc) · 3.73 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!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>Forms</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
</head>
<body>
<div class="container pt-4">
<form action="">
<div class="mb-3">
<label class="form-label" for="nombre">Introduce tu nombre</label>
<input
id="nombre"
type="text"
class="form-control"
placeholder="Tu nombre"
disabled
/>
<div class="form-text">Introduce tu nombre de pila</div>
</div>
<div class="mb-3">
<input
type="checkbox"
id="check-mayor-edad"
class="form-check-input"
checked
/>
<label class="form-check-label" for="check-mayor-edad"
>¿Eres mayor de edad?</label
>
</div>
<div class="mb-3">
<label class="form-label" for="apellido">Introduce tu apellido</label>
<input
id="apellido"
type="text"
class="form-control-plaintext"
placeholder="Tu apellido"
value="Villar"
/>
<div class="form-text">Introduce tu apellido</div>
</div>
<div class="mb-3">
<label for="formFile" class="form-label">Por defecto</label>
<input class="form-control" type="file" id="formFile" />
</div>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label"
>Email address</label
>
<input
type="email"
class="form-control form-control-sm"
id="exampleInputEmail1"
aria-describedby="emailHelp"
value="gorka@gorka.com"
readonly
/>
<div id="emailHelp" class="form-text">
We'll never share your email with anyone else.
</div>
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label">Password</label>
<input
type="password"
class="form-control"
id="exampleInputPassword1"
/>
</div>
<div class="mb-3 form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1" />
<label class="form-check-label" for="exampleCheck1"
>Check me out</label
>
</div>
<div class="mb-3">
<input type="color" class="form-control form-control-color" />
</div>
<div class="mb-3">
<label for="exampleDataList" class="form-label"
>Selecciona tu ciudad</label
>
<input
class="form-control"
list="datalistOptions"
id="exampleDataList"
placeholder="Type to search..."
/>
<datalist id="datalistOptions">
<option value="San Sebastián" />
<option value="Madrid" />
<option value="Bilbao" />
<option value="Barcelona" />
<option value="Valencia" />
</datalist>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</body>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"
></script>
</html>