-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathtemplate.html
More file actions
50 lines (49 loc) · 1.02 KB
/
template.html
File metadata and controls
50 lines (49 loc) · 1.02 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
<html>
<head>
<title>KookboekApp</title>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8'/>
</head>
<body>
<form onsubmit=" … "; return false;>
<fieldset>
<legend>Vul waarden in voor het recept:
</legend>
<table>
<tr>
<td>Ingrediënt 1:</td>
<td><input type="text" id="i1" /></td>
</tr>
<tr>
<td>Ingrediënt 2:</td>
<td><input type="text" id="i2" /></td>
</tr>
<tr>
<td>Bewerking:</td>
<td><input type="text" id="b" /></td>
</tr>
<tr>
<td>Duur:</td>
<td><input type="text" id="d" /></td>
</tr>
</table>
</fieldset>
<br/>
<input type="submit" value="Maak recept" />
</form>
<p id="r"></p>
<script>
… maakRecept() {
// waarden ophalen uit HTML-formulier
… ingrediënt1 = … ;
… ingrediënt2 = … ;
… bewerking = … ;
… duur = … ;
// variabelen samenvoegen tot recepttekst
… recept = … ;
// recept in beeld zetten
… ;
… ;
}
</script>
</body>
</html>