-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
122 lines (118 loc) · 3.43 KB
/
Copy pathindex.html
File metadata and controls
122 lines (118 loc) · 3.43 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<html>
<head>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<header id="header">
<img src="https://marcogodoyv.github.io/TPOCodoACodo/images/img.png">
<h1>Task Manager</h1>
</header>
<main id="main">
<div class="container">
<h1>To do task manager</h1>
<br />
<div class="statusBar">
<div class="box">
<span class="number" id="estimatedHours">0</span>
<p class="stats">Hours Remaining (estimated)</p>
</div>
<div class="box">
<span class="number" id="remainingTasks">0</span>
<p class="stats">Pending Tasks</p>
</div>
<div class="box">
<span class="number" id="hoursRunning">0</span>
<p class="stats">Hours Done (estimated)</p>
</div>
<div class="box">
<span class="number" id="tasksDone">0</span>
<p class="stats">Tasks Done</p>
</div>
</div>
<form id="form">
<div class="task">
<input
type="text"
id="title"
name="title"
placeholder="Title"
required
/>
<input
type="text"
id="item"
name="description"
placeholder="Description"
/>
<input
type="number"
id="pomodoros"
name="pomodoros"
placeholder="Pomodoros"
required
/>
<button type="submit" id="addTask">Add</button>
</div>
</form>
<div class="tabs">
<div class="tab selected" >
<h2 class ="tab" id="tab1">TO DO</h2>
</div>
<div class="tab" >
<h2 class ="tab" id="tab2">DONE</h2>
</div>
</div>
<ol class="list"></ol>
<br>
<div class="footer">
<button type="button" id="deleteAllbtn" hidden="true">Delete All</button>
</div>
</div>
<aside id="aside">
<form id="editForm" hidden="true">
<div class="task" style="display:flex; flex-direction:column; max-width: 90%; margin: 1em">
<br />
<label>Title</label>
<input
type="text"
id="editTitle"
name="editTitle"
placeholder="Title"
required
/>
<br />
<label>Description</label>
<input
type="text"
id="editItem"
name="editDescription"
placeholder="Description"
/>
<br />
<label>Pomodoros</label>
<input
type="number"
id="editPomodoros"
name="editPomodoros"
placeholder="Pomodoros"
required
/>
<br />
<label>Task Done?</label>
<input
type="checkbox"
id="editTaskDone"
name="editTaskDone"
placeholder="Task Done"
/>
</div>
<div class="buttonArea">
<button id="editTask"type="submit">Accept</button>
<button id="deleteTask"type="button">Delete</button>
</div>
</form>
</aside>
</main>
<script src="index.js"></script>
</body>
</html>