-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.php
More file actions
106 lines (97 loc) · 3.96 KB
/
form.php
File metadata and controls
106 lines (97 loc) · 3.96 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
<?php
include_once("lib/settings/config.php");
$title = "INSTELLINGEN";
try {
}
catch(Exception $e){
}
?><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<?php include("lib/includes/head.inc.php"); ?>
<title><?php echo $title ?></title>
</head>
<body>
<div class="canvas">
<?php include_once("lib/includes/nav.inc.php"); ?>
<form class="setting" action="" method="post">
<div class="name">
<label class="hidden" for="name" type="hidden" >name</label>
<input type="text" id="name" placeholder="name" name="name">
</div>
<div class="geboortedatum">
<label class="hidden" for="geboortedatum" type="hidden" >geboortedatum</label>
<input type="date" id="geboortedatum" placeholder="geboortedatum" name="geboortedatum">
</div>
<div class="huis center">
<label for="huis">in nood huis betreden mag</label>
<label class="switch">
<input type="checkbox" id="huis" name="huis">
<span class="slider round"></span></label>
</div>
<div class="risicogroep center">
<label for="risicogroep">hebt u een aandoening</label>
<label class="switch">
<input type="checkbox" id="risicogroep" name="risicogroep" onclick="risk()">
<span class="slider round"></span></label>
</div>
<div id="ifrisico" class="hidden">
<div class="aandoening">
<select name="aandoening">
<option value="aandoening">aandoening</option>
<option value="diabetes">diabetes</option>
<option value="hoge bloeddruklijders">hoge bloeddruklijders</option>
<option value="epilepsie">epilepsie</option>
</select>
</div>
<div class="gewicht">
<label class="hidden" for="gewicht" type="hidden" >gewicht</label>
<input type="number" id="gewicht" placeholder="gewicht" name="gewicht">
</div>
<div class="bloedgroep">
<select name="bloedgroep">
<option value="bloedgroep">bloedgroep</option>
<option value="A+">A+</option>
<option value="A-">A-</option>
<option value="B+">B+</option>
<option value="B-">B-</option>
<option value="AB+">AB+</option>
<option value="AB-">AB-</option>
<option value="O+">O+</option>
<option value="O-">O-</option>
</select>
</div>
</div>
<div class="arts center">
<label for="arts">bent u hulpverlener</label>
<label class="switch">
<input type="checkbox" id="arts" name="arts" onclick="zorg()">
<span class="slider round"></span></label>
</div>
<div id="ifarts" class="hidden">
<div class="riziv">
<label class="hidden" for="riziv" type="hidden" >riziv</label>
<input type="number" id="riziv" placeholder="riziv" name="riziv">
</div>
<div class="job">
<label class="hidden" for="job" type="hidden" >job</label>
<input type="text" id="job" placeholder="job" name="job ">
</div>
<div class="melding">
<label class="lbl_switch" for="melding">wil meldingen ontvangen</label>
<label class="switch">
<input type="checkbox" id="melding" name="melding">
<span class="slider round"></span></label>
</div>
</div>
<div class="opslaan">
<button type="submit" class="btn__opslaan">OPSLAAN</button>
</div>
</form>
<?php include_once("lib/includes/footer.inc.php"); ?>
</div>
</body>
</html>