-
Notifications
You must be signed in to change notification settings - Fork 17
/
index.html
208 lines (196 loc) · 6.26 KB
/
index.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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Form1</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1>Przykładowy form 1</h1>
<div class="form1">
<form>
<div>
<label class="description" id="title1" for="field1">
Podaj imię:
</label>
<input type="text" id="field1" name="field1" autofocus />
</div>
<div class="field2">
<label class="description" id="title2" for="field2">
Podaj hasło:
</label>
<input type="password" id="field2" name="field2" title="Minimum 6 znaków, 1 cyfra, 1 duża i 1 mała litera" pattern="(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{6,}" />
<input type="checkbox" onclick="myFunction()">Pokaż hasło
<script>
function myFunction() {
var x = document.getElementById("field2");
if (x.type === "password") {
x.type = "text";
} else {
x.type = "password";
}
}
</script>
<!-- walidacja hasła! -->
</div>
<div>
<label class="description" id="title3" for="field3">
Podaj email:
</label>
<input type="email" id="field3" name="field3" required />
</div>
<div>
<label class="description" id="age_label" for="age">Ile masz lat doświadczenia zawodowego?</label
>
<input type="number" id="age" name="age" min="2" max="12" value="3" />
</div>
<div></div>
<div>
<label class="description" id="title4" for="field4"
>Opisz swój problem:</label
>
<div>
<textarea
id="field4"
name="field4"
rows="5"
cols="20"
spellcheck="true"
>
</textarea>
</div>
</div>
<div>
<fieldset>
<legend class="description" id="title5">
Wybierz sport zimowy:
<img class='img' src="./pexels-pixabay-47356.jpg" alt="pływanie">
</legend>
<div>
<div>
<input
type="radio"
id="radio_0"
name="radio"
value="default"
checked="checked"
/>
<label class="choice" id="title6_0" for="radio_0"
>Nie interesuje się
</label>
</div>
<div>
<input type="radio" id="radio_1" name="radio" value="skiing" />
<label class="choice" id="title6_1" for="radio_1">
Narciarstwo
</label>
</div>
<div>
<input type="radio" id="radio_2" name="radio" value="snowboard" />
<label class="choice" id="title6_2" for="radio_2">Snowboard</label
>
</div>
<div>
<input
type="radio"
id="radio_3"
name="radio"
value="nordic_walking"
/>
<label class="choice" id="title6_3" for="radio_3"
>Nordic walking</label
>
</div>
<div>
<input
type="radio"
id="radio_3"
name="radio"
value="squash"
/>
<label class="choice" id="title6_4" for="radio_3"
>Squash</label
>
</div>
</div>
</fieldset>
</div>
<div>
<fieldset class="cities">
<legend class="description" id="title7">
Które miasta lubisz? (mozesz wybrac wiecej niz 1)
</legend>
<div>
<div>
<input
type="checkbox"
id="checkbox_1"
name="checkbox_1"
value="poznan"
/>
<label class="choice" id="checkbox_1" for="checkbox_1"
>Poznań</label
>
</div>
<div>
<input
type="checkbox"
id="checkbox_2"
name="checkbox_2"
value="wroclaw"
/>
<label class="choice" id="checkbox_2" for="checkbox_2"
>Wrocław</label
>
</div>
<div>
<input
type="checkbox"
id="checkbox_3"
name="checkbox_3"
value="gdansk"
/>
<label class="choice" id="checkbox_3" for="checkbox_3"
>Gdańsk</label
>
</div>
<div>
<input
type="checkbox"
id="checkbox_4"
name="checkbox_4"
value="Torun"
/>
<label class="choice" id="checkbox_4" for="checkbox_4"
>Toruń</label
>
</div>
</div>
</fieldset>
</div>
<div>
<label class="description" id="title8" for="field8"
>Wybierz 1 ulubioną muzykę:</label
>
<div>
<select id="music" name="music" required>
<option value="">Wybierz rodzaj muzyki</option>
<option value="jazz">Jazz</option>
<option value="classic">Klasyczna</option>
<option value="rock">Rock</option>
<option value="dance">Dance</option>
</select>
</div>
</div>
<div>
<input
type="submit"
id="sendForm"
name="sendForm"
value="Prześlij"/>
</div>
</form>
</div>
</body>
</html>