-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (56 loc) · 1.84 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Todo-List</title>
<link rel="stylesheet" href="/src/css/style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<div id="content">
<nav>
<h1>Todo-List</h1>
</nav>
<div id="add-btn-box">
<button id="addBtn">Add</button>
</div>
<div id="modal1" class="modal">
<div class="modal-content">
<span class="close">×</span>
<form class="form hidden" id="form1">
<h1 style="text-align: center">Enter task</h1>
<div id="titleBox" class="inputBox">
<label for="title">Title</label>
<input type="text" id="title" required />
</div>
<div id="descriptionBox" class="inputBox">
<label for="description">Description</label>
<textarea rows="5" cols="100" id="description">
Got anything to do?</textarea
>
</div>
<div id="dueDateBox" class="inputBox">
<label for="dueDate">Due Date</label>
<input type="date" id="dueDate" />
</div>
<div id="priority" class="inputBox">
<label for="priority">Priority</label>
<select name="priority" id="priority">
<option value="high">High</option>
<option value="medium">Medium</option>
<option value="low">Low</option>
</select>
</div>
<div id="save-btn-box">
<button id="saveBtn" type="submit" form="form1" value="save">
Save
</button>
</div>
</form>
</div>
</div>
<div id="task-board"></div>
</div>
<script src="bundle.js"></script>
</body>
</html>