-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (41 loc) · 1.13 KB
/
index.html
File metadata and controls
41 lines (41 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Week Planner</title>
<link rel="stylesheet" href="./index.css" />
<link rel="icon" href="./icon.png" />
<script src="./index.js" type="module"></script>
</head>
<body>
<div>
<span id="slotSpan"></span>
<a target="_blank" href="https://github.com/TomasHubelbauer/week-planner">GitHub</a>
</div>
<table draggable="false"></table>
<div id="slotDiv">
<div id="rangeDiv"></div>
<label>
Type:
<input placeholder="Type" id="typeInput" list="typeDatalist" />
<datalist id="typeDatalist"></datalist>
</label>
</div>
<div id="typeDiv">
<label>
Minimum:
<input placeholder="Minimum (hh:mm)" id="minimumInput" />
</label>
<label>
Maximum:
<input placeholder="Maximum (hh:mm)" id="maximumInput" />
</label>
<label>
<input type="checkbox" id="visibleInput" />
Visible
</label>
</div>
<ul id="rangeUl"></ul>
</body>
</html>