-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtasks.html
174 lines (154 loc) · 5.75 KB
/
tasks.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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!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">
<title>Tasks - TimeLancer</title>
<script src="https://kit.fontawesome.com/0e6a2e732f.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./Styles/sidebar.css">
<link rel="shortcut icon" href="./Images/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="./Styles/tasks.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css">
</head>
<style>
#trial{
position:relative;
width:85%;
z-index:-1;
margin:30px auto;
padding:5px 40px;
background:rgb(210, 232, 247);
border:1px solid rgb(170, 221, 245);
}
#trial i{
color:blue;
position:absolute;
left:15px;
top:21px;
}
.blue14{
color:blue;
font-size:14px
}
.black12{
color:black;
font-size:12px;
}
</style>
<body>
<nav id="sidebar">
<!-- Import Sidebar body -->
</nav>
<section id="navbar">
<!-- import navbar -->
</section>
<section id="trial">
<i class="fa-solid fa-circle-info"></i>
<p class="blue14">Start your 7-Day free trial now.</p>
<p class="black12">You currently don't have an active subscription. <a href="#">Start your free Trial now!</a></p>
</section>
<!-- All the code above is mandadory - "Task page" code is starting from below -->
<!-- TASKS -->
<div id="buttons_div">
<div class="container">
<select value="Filter With" id="dropdown_activeBtn">
<option value="">Filter With</option>
<option value="active">Active</option>
<option value="completed">Completed</option>
</select>
</div>
<button id="newTask" class="container">New Task</button>
</div>
<!-- Add task table -->
<div id="table-div">
<table class="table">
<thead id="head_table">
<tr>
<th>SR.NO.</th>
<th>TASKS</th>
<th>PROJECT</th>
<th>DUE DATE</th>
<th>WORK DURATION</th>
<th>DELETE</th>
<th>STATUS</th>
</tr>
</thead>
<tbody id="tableBody">
<!-- append the table data here -->
</tbody>
</table>
</div>
<footer class="footer">
<div class="box">
<div class="row">
<div>
<div id="footer-links">
<a class="footer-link" href="#" target="_blank">
Feature Requests
</a>
<span class="footer-dot"></span>
<a class="footer-link" href="#" target="_blank">
Help Center
</a>
<span class="footer-dot"></span>
<a class="footer-link" href="#" target="_blank">
Blog & Resources
</a>
<span class="footer-dot"></span>
<a class="footer-link" href="#">Pricing</a>
<span class="footer-dot"></span>
<a class="footer-link" href="#" target="_blank">
Privacy policy
</a>
</div>
<div id="footer-app-links">
<a>
<span class="footer-icon"></span>
TimeLancer Apps:
</a>
<a class="footer-app-link" href="#" target="_blank">
<span class="footer-icon-iphone"><i class="fa-duotone fa-mobile"></i></span>
iPhone
</a>
<a class="footer-app-link" href="#" target="_blank">
<span class="footer-icon-laptop"><i class="fa-solid fa-laptop"></i></span>
MacOS
</a>
<a class="footer-app-link" href="#" target="_blank">
<span class="footer-icon-iphone"><i class="fa-duotone fa-mobile"></i></span>
Android
</a>
<a class="footer-app-link" target="_blank" href="#">
<span class="footer-icon-chrome"><i class="fa-brands fa-chrome"></i></span>
Chrome
</a>
</div>
</div>
</div>
<div class="footer-legal-policies">
<div class="footer-disclaimer">
©2022 TimeLancer Technologies Inc — Payments, banking, and issuing services are provided by <a
target="_blank" href="#">Stripe Payments Company</a>, Evolve Bank &
Trust (Member FDIC), and Celtic Bank (Member FDIC), respectively. TimeLancer is not a law firm, and
does
not provide legal services, advice, or representation.
<a target="_blank" href="#">Terms</a>
<a href="#" target="_blank">Credits</a>
</div>
</div>
</div>
</footer>
</body>
<article id="new-data">
<div id="box">
<button id="close-box">X</button>
<div id="form">
<!-- Appending form as per use -->
</div>
</div>
</article>
</html>
<script type="module" src="./Scripts/src/tasks.js">
</script>