-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (81 loc) · 2.74 KB
/
index.html
File metadata and controls
84 lines (81 loc) · 2.74 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script
src="https://kit.fontawesome.com/3a52c9b328.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="styles/main.css" />
<title>TimeDo</title>
</head>
<body>
<div class="modal layer">
<div class="modal container">
<div class="modal card">
<h1 class="modal nomore title">Too Many Tasks</h1>
<p class="modal nomore message">
Are you sure you can handle all these tasks? Let's focus on what we
have already. Or, remove existing tasks to add more.
</p>
<h1 class="modal invalid title">Invalid Inputs</h1>
<p class="modal invalid message">
Give TimeDo some real task to track. You left out either the task
name or the duration.
</p>
<button class="close control controller" onclick="closeModal()">
<i class="fas fa-times-circle modal close"></i>
</button>
</div>
</div>
</div>
<div class="top">
<span class="title">TimeDo:</span>
<span class="subtitle">A daily to-do list with timer</span>
</div>
<div class="main">
<div class="container">
<div class="prompt card" onload="setRandomColor(this)">
<svg class="prompt ring" viewBox="0 0 200 200">
<circle
class="prompt"
fill="transparent"
r="95"
cx="100"
cy="100"
stroke-width="10"
stroke="red"
/>
</svg>
<div class="prompt form">
<div class="prompt element spacer"></div>
<div class="input-container">
<label>Task</label>
<input
name="label"
class="prompt element label input"
type="text"
/>
</div>
<div class="input-container">
<label>Duration</label>
<div class="prompt element time input">
<input class="time hour" type="text" placeholder="00" />
<span class="colon">:</span>
<input class="time mins" type="text" placeholder="00" />
<span class="colon">:</span>
<input class="time secs" type="text" placeholder="00" />
</div>
</div>
<button class="prompt element button" onclick="addTimer()">
Add
</button>
</div>
</div>
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>