-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbokning.html
126 lines (110 loc) · 4.17 KB
/
bokning.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Page Title</title>
</head>
<body>
<form onsubmit="insertHtml()">
<h3 id="form form-1">Datum</h3>
<select id="date">
<option value="val-1">Val-1</option>
<option value="val-2">val-2</option>
<option value="val-3">val-3</option>
<option value="val-4">val-4</option>
<option value="val-5">val-5</option>
</select>
<h3 id="form form-2">Välj tid</h3>
<select id="time">
<option value="14:00">14:00</option>
<option value="16:00">16:00</option>
<option value="17:00">17:00</option>
<option value="18:00">18:00</option>
</select>
<h3 id="form form-3">Ämne:</h3>
<select id="subject">
<option value="val-1">Val-1</option>
<option value="val-2">val-2</option>
<option value="val-3">val-3</option>
<option value="val-4">val-4</option>
<option value="val-5">val-5</option>
</select>
<h3 id="form form-4">Paket:</h3>
<select id="package">
<option value="val-1">Val-1</option>
<option value="val-2">val-2</option>
<option value="val-3">val-3</option>
<option value="val-4">val-4</option>
<option value="val-5">val-5</option>
</select>
<h3 id="form form-5">Skola</h3>
<select id="school">
<option value="val-1">Val-1</option>
<option value="val-2">val-2</option>
<option value="val-3">val-3</option>
<option value="val-4">val-4</option>
<option value="val-5">val-5</option>
</select>
<h3 id="form form-6">Årskurs:</h3>
<select id="klass">
<input type="checkbox" id="year-of-class-1" name="class" />Årskurs 1
<br />
<input type="checkbox" id="year-of-class-2" name="class" />Årskurs 2
<br />
<input type="checkbox" id="year-of-class-3" name="class" />Årskurs 3
<br />
<input type="checkbox" id="year-of-class-4" name="class" />Årskurs 4
<br />
<input type="checkbox" id="year-of-class-5" name="class" />Årskurs 5
<br />
<input type="checkbox" id="year-of-class-6" name="class" />Årskurs 6
<br />
<input type="checkbox" id="year-of-class-7" name="class" />Årskurs 7
<br />
<input type="checkbox" id="year-of-class-8" name="class" />Årskurs 8
<br />
<input type="checkbox" id="year-of-class-9" name="class" />Årskurs 9
<br />
<input type="checkbox" id="year-of-class-g-1" name="class" />Gymnasiet
1a år
<br />
<input type="checkbox" id="year-of-class-g-2" name="class" />Gymnasiet
2a år
<br />
<input type="checkbox" id="year-of-class-g-3" name="class" />Gymnasiet
3e år
<br />
</select>
<h3 id="form form-6">Kommun:</h3>
<select id="county" name="county">
<option value="sten">Stenungsund</option>
<option value="kung">Kungälv</option>
<option value="orust">Orust</option>
<option value="tjörn">Tjörn</option>
<option value="udde">Uddevalla</option>
</select>
<h3 id="form form-7">Lärare:</h3>
<input type="text" id="fname" name="fname" required /><br />
<input type="text" id="lname" name="lname" required />
<h3 id="form form-8" for="quantity" class="form" required>
Antal elever:
</h3>
<input type="number" id="quantity" name="quantity" min="1" max="40" />
<h3 id="form form-9">Email:</h3>
<input type="text" id="mail" name="email" />
<h3 id="form form-10">Telefonnummer:</h3>
<input type="text" id="number" name="number" />
<h3 id="form form-11">Övrigt:</h3>
<input type="text" id="other" name="other" />
<div>
<button value="cancel">Avbryt</button>
<button id="confirmBtn" value="default" type="submit">Bekräfta</button>
</div>
</form>
<output></output>
<script src="./app.js"></script>
<script src="./db.js"></script>
</body>
</html>