-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformulieren.html
More file actions
71 lines (70 loc) · 1.99 KB
/
formulieren.html
File metadata and controls
71 lines (70 loc) · 1.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Formulieren</title>
<style>
label {
display: inline-block;
width: 200px;
}
</style>
</head>
<body>
<h2>Formulieren</h2>
<form action="https://formspree.io/info@kassenaar.com" method="post">
<p>
<label for="voornaam">
Voornaam:
</label>
<input type="text" id="voornaam" name="voornaam" required>
</p>
<p>
<label for="leeftijd">Leeftijd</label>
<input type="number" min="18" max="99" id="leeftijd" name="leeftijd">
</p>
<h3>Wat vind je lekker?</h3>
<p>
<label for="pizza">Pizza</label>
<input type="checkbox" id="pizza" name="pizza">
</p>
<p>
<label for="chinees">Chinees</label>
<input type="checkbox" id="chinees" name="chinees">
</p>
<h3>Nationaliteit?</h3>
<p>
<label for="NL">NL</label>
<input type="radio" id="NL" required name="nationaliteit">
</p>
<p>
<label for="BE">BE</label>
<input type="radio" id="BE" name="nationaliteit">
</p>
<p>
<label for="CH">Chinees</label>
<input type="radio" id="CH" name="nationaliteit">
</p>
<p>
<label for="Other">Overig</label>
<input type="radio" id="Other" name="nationaliteit">
</p>
<h3>Provincie?</h3>
<label for="selectProvincie">Uw provincie</label>
<select class="form-control" name="selectProvincie"
id="selectProvincie">
<option value="-1">
Maak een keuze
</option>
<option value="GR">Groningen</option>
<option value="FR">Friesland</option>
<option value="DR">Drente</option>
<option value="OV">Overijssel</option>
<option value="Overing">Overig</option>
</select>
<hr>
<input type="submit" name="submit" id="submit" value="Verzenden">
</form>
</body>
</html>