-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvacation-set.html
More file actions
37 lines (34 loc) · 1.12 KB
/
vacation-set.html
File metadata and controls
37 lines (34 loc) · 1.12 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
<!DOCTYPE html>
<html lang="de-CH">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/style/main.css">
<script src="./assets/js/vacation-set.js" type="module" defer></script>
<title>Ferienanfrage</title>
</head>
<body>
<main>
<h1>Urlaubeingabe</h1>
<form autocomplete="off" action="#">
<select name="student" id="student" placeholder="Lernpartner">
<option value="48">Anaja Wackernagel</option>
<option value="49">Antonelle Rössler</option>
</select>
<select name="equipment" id="vacation-type" placeholder="type">
<option value="1">Ferien</option>
<option value="3">Kompensation</option>
</select>
<input type="date" id="start"><br>
<input type="date" id="end"><br>
<button id="add">insert</button><br>
<p id="message"></p>
</form>
<table id="vacations" style="width:200%"">
<tbody></tbody>
<thead><tr><th>Wer<th>Was<th>Von<th>Bis</thead>
</table>
</main>
</body>
</html>