-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (42 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style_settings.css" />
<link rel="stylesheet" href="styles/taskList.css" />
<script src="http://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js"></script>
<script src="https://cdn.jsdelivr.net/npm/comfy.js@latest/dist/comfy.min.js"></script>
<script src="settings.js"></script>
<script src="auth.js"></script>
<script src="scripts/runtimeSettings.js"></script>
<script defer src="scripts/index.js"></script>
<title>To Do List</title>
</head>
<body>
<div class="main-content">
<div class="horiz header">
<div>
<div class="title"> </div>
<div class="cycle-title"> </div>
</div>
<div class="tasks-count">0/0</div>
</div>
<div class="task-wrapper">
<div class="task-list primary"></div>
<div class="task-list secondary"></div>
</div>
</div>
<div class="notifications"></div>
<template id="task-template">
<div class="task-item">
<div class="checkbox">
<input type="checkbox" class="task-checkbox"/><label></label>
</div>
<div class="task-text">
0. Lorem ipsum dolor sit amet consectetur adipisicing elit. Corrupti, neque!
</div>
</div>
</template>
</body>
</html>