-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (48 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" type="image/x-icon" href="data:image/x-icon;,">
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="./css/select.css" />
<link rel="stylesheet" href="./css/dialog.css" />
<script type=module src="./js/main.js"></script>
<title>Todo</title>
</head>
<body>
<section class="todo">
<div class="custom-dropdown">
<select id="topicselect">
<option value="" disabled selected hidden>Select A Todo Topic</option>
</select>
<a id="closebtn" href="javascript:window.open('','_self').close();"> X </a>
</div>
<div class="input">
<input type="text" id="taskInput" class="input-field" placeholder="Add a new task" />
</div>
<ul class="scroll">
<li id="todoList"></li>
</ul>
<div>
<hr class="counter" />
<div class="counter-container">
<p><span id="todoCount">0</span> Items</p>
<button id="backupbtn">Backup</button>
<button id="restorebtn">Restore</button>
<input id="filesave" class="file" type="file" name="filesave">
<input id="fileload" class="file" type="file" name="fileload">
<button id="deletecompleted">Remove Completed</button>
</div>
</div>
<dialog id="popupDialog">
<p id="popup_text">Yup!</p>
<p>Press any key to continue.</p>
</dialog>
<dialog id="myDialog">
<label for="pin">Enter PIN</label>
<input id="pin" type="password" />
</dialog>
</section>
</body>
</html>