-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (63 loc) · 2.54 KB
/
index.html
File metadata and controls
63 lines (63 loc) · 2.54 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>ToDay ToDone</title>
<link rel="icon" href="Assets/list-check-solid.svg" />
<!-- <script src="https://kit.fontawesome.com/602ebbc371.js" crossorigin="anonymous"></script> -->
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="Assets/css/fontawesome.css" />
<link rel="stylesheet" href="Assets/css/brands.css" />
<link rel="stylesheet" href="Assets/css/solid.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=M+PLUS+Code+Latin:wght@100..700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap" rel="stylesheet">
</head>
<body>
<!-- TODAY -->
<div id="today">
<h1>Today</h1>
<button id="new-btn" class="btn">New Task</button>
<!-- new task form -->
<div id="new-task-form" class="task-form hidden">
<div class="task-form-body">
<label class="task-form-label" for="task-input">New:</label>
<input required type="text" class="form-control" id="task-input" value="" />
</div>
<div class="task-form-footer">
<button id="close-btn" class="btn">Close</button>
<button id="add-btn" class="btn">Add</button>
</div>
</div>
<!-- edit task form -->
<div id="edit-task-form" class="task-form hidden">
<div class="task-form-body">
<label class="task-form-label" for="task-edit">Edit:</label>
<input required type="text" class="form-control" id="task-edit" value="" />
</div>
<div class="task-form-footer">
<button id="close-btn2" class="btn">Close</button>
<button id="update-btn" class="btn">Update</button>
</div>
</div>
<!-- TODAY task list -->
<div id="today-container" class="day-container">
</div>
<div><a href="#tomorrow">tomorrow</a></div>
</div>
<!-- TOMORROW -->
<div id="tomorrow">
<h1>Tomorrow</h1>
<button id="refresh-btn" class="btn">Refresh</button>
<div></div>
<!-- TOMORROW task list -->
<div id="tomorrow-container" class="day-container">
</div>
<div><a href="#today">today</a></div>
</div>
</body>
<script src="script.js"></script>
</html>