-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathanalytics.html
More file actions
295 lines (267 loc) · 15.1 KB
/
analytics.html
File metadata and controls
295 lines (267 loc) · 15.1 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
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Admin Dashboard | ProTrack</title>
<link rel="icon" type="image/x-icon" href="./contents/images/favicon.png" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons+Sharp" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="contents/css/analytics.css">
</head>
<body>
<div class="container">
<!-- Logo -->
<aside>
<div class="top">
<div class="logo">
<h2>Pro<span class="primary">Track</span></h2>
</div>
<div class="close" id="close-btn">
<span class="material-icons-sharp">close</span>
</div>
</div>
<div class="sidebar">
<a href="./dashboard.html">
<span class="material-icons-sharp">grid_view</span>
<h3>Dashboard</h3>
</a>
<!-- <a href="./activityTracking.html">
<span class="material-icons-sharp">calendar_today</span>
<h3>Activity Tracking</h3>
</a> -->
<a href="./goalSetting.html">
<span class="material-icons-sharp">receipt_long</span>
<h3>Goal Setting</h3>
</a>
<a href="./analytics.html" class="active">
<span class="material-icons-sharp">insights</span>
<h3>Analytics</h3>
</a>
<a href="./todo.html">
<span class="material-icons-sharp">inventory</span>
<h3>Todo</h3>
</a>
<a href="./reports.html">
<span class="material-icons-sharp">report_gmailerrorred</span>
<h3>Reports</h3>
</a>
<a href="./settings.html">
<span class="material-icons-sharp">settings</span>
<h3>Settings</h3>
</a>
<a href="#" onclick="logout()">
<span class="material-icons-sharp">logout</span>
<h3>Logout</h3>
</a>
</div>
</aside>
<main>
<form class="add-product-popUp">
<h1>Add Activity</h1><br>
<label>
<h2>Title</h2>
<input required id="title" type="text">
</label>
<label>
<h2>Duration</h2>
<input required id="duration" type="text">
</label>
<button type="submit" class="popupSubmit">Add</button>
</form>
<h1>Analytics</h1>
<div class="date">
<input type="date">
</div>
<section class="timeline-section">
<div class="timeline-items">
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-date">September, 2023</div>
<div class="timeline-content">
<h3>Advanced Excel and Data Analysis</h3>
<p>Mastered advanced Excel functions, pivot tables, and VBA macros. Completed comprehensive data analysis projects including restaurant performance metrics and AAARR framework implementation. Created automated dashboards and reporting systems. Achieved advanced certification with distinction from Jobaaj learning platform.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-date">October, 2023</div>
<div class="timeline-content">
<h3>Python Programming Excellence</h3>
<p>Achieved 5-star Python programmer badge on HackerRank with 850+ points. Demonstrated mastery in advanced concepts including list comprehensions, lambda functions, and decorators. Solved 100+ programming challenges covering data structures, algorithms, and functional programming. Ranked in top 10% of Python developers on the platform.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-date">November, 2023</div>
<div class="timeline-content">
<h3>C++ and Object-Oriented Programming</h3>
<p>Mastered fundamental and advanced OOP concepts in C++. Built a Student Management System implementing inheritance, polymorphism, and encapsulation. Completed 50+ practice problems focusing on memory management and pointer operations.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-date">December, 2023</div>
<div class="timeline-content">
<h3>Data Structures Fundamentals</h3>
<p>Implemented core data structures in C++: linked lists, stacks, queues, and binary trees. Created a practical project implementing priority queue for a Hospital Management System. Achieved 90% score in DSA fundamentals assessment.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-date">January, 2024</div>
<div class="timeline-content">
<h3>Advanced Python Programming</h3>
<p>Developed expertise in Python's advanced features including decorators, generators, and context managers. Created automation scripts for file processing and web scraping. Built a REST API using FastAPI and SQLAlchemy.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-date">February, 2024</div>
<div class="timeline-content">
<h3>Frontend Development Essentials</h3>
<p>Mastered HTML5, CSS3, and JavaScript ES6+. Built responsive websites using modern CSS frameworks like Tailwind. Implemented interactive features using JavaScript and completed a portfolio website with animation effects.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-date">March, 2024</div>
<div class="timeline-content">
<h3>Database Design and SQL</h3>
<p>Created complex database schemas with proper normalization. Implemented an Inventory Management System using MySQL. Mastered advanced SQL concepts including joins, subqueries, and stored procedures. Completed SQL advanced certification.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-date">April, 2024</div>
<div class="timeline-content">
<h3>React and Modern Web Development</h3>
<p>Built single-page applications using React and Redux. Implemented state management, routing, and API integration. Developed a full-featured Task Management System with authentication and real-time updates using Firebase.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-date">May, 2024</div>
<div class="timeline-content">
<h3>Backend Development with Node.js</h3>
<p>Created RESTful APIs using Express.js and MongoDB. Implemented user authentication, file uploads, and email services. Developed a Social Media Backend with features like post creation, commenting, and user following system.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-date">July, 2024</div>
<div class="timeline-content">
<h3>Full Stack Project Deployment</h3>
<p>Successfully deployed full-stack applications using AWS services. Implemented CI/CD pipeline using GitHub Actions. Configured nginx server, SSL certificates, and domain management. Achieved 99.9% uptime for deployed applications.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-date">August, 2024</div>
<div class="timeline-content">
<h3>Cloud Architecture and DevOps</h3>
<p>Mastered AWS cloud services including EC2, S3, and Lambda. Implemented serverless architectures and microservices. Created automated deployment pipelines using Docker and Kubernetes. Achieved AWS Solutions Architect Associate certification.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-date">September, 2024</div>
<div class="timeline-content">
<h3>Machine Learning and AI Development</h3>
<p>Implemented machine learning models using TensorFlow and scikit-learn. Developed predictive analytics solutions for business use cases. Created and deployed AI-powered recommendation systems. Completed advanced machine learning certification from leading platform.</p>
</div>
</div>
</div>
</section>
</main>
<!-- Top Right Menu Section -->
<div class="right">
<div class="top">
<button id="menu-btn">
<span class="material-icons-sharp">menu</span>
</button>
<div class="theme-toggler">
<span class="material-icons-sharp active">light_mode</span>
<span class="material-icons-sharp">dark_mode</span>
</div>
<div class="profile">
<div class="info">
<!-- Placeholder for the user's name -->
<p>Hey, <b id="username-placeholder">USER</b></p>
<small class="text-muted">Admin</small>
</div>
<div class="profile-photo">
<!-- Placeholder for the user's profile image -->
<img src="./contents/images/user.png" alt="profile" id="profile-photo-placeholder">
</div>
</div>
</div>
<!-- Recent Updates Section -->
<div class="recent-updates">
<h2>Recent Updates</h2>
<div class="updates">
<div class="update">
<div class="profile-photo">
<!-- Placeholder for the user's profile image -->
<img src="./contents/images/user.png" alt="profile" id="profile-photo-placeholder">
</div>
<div class="message">
<p><b id="username-placeholder">USER</b> completed the Web Design course.</p>
<small class="text-muted">5 Minutes Ago</small>
</div>
</div>
<div class="update">
<div class="profile-photo">
<!-- Placeholder for the user's profile image -->
<img src="./contents/images/user.png" alt="profile" id="profile-photo-placeholder">
</div>
<div class="message">
<p><b id="username-placeholder">USER</b> achieved a goal: "Study 2 hours daily."</p>
<small class="text-muted">10 Minutes Ago</small>
</div>
</div>
</div>
</div>
<!-- Activity Analytics Section -->
<div class="activity-analysis">
<h2>Activity Analytics</h2>
<div class="activity-cont" id="activity-cont">
<div class="item online">
<div class="icon">
<span class="material-icons-sharp">auto_stories</span>
</div>
<div class="right">
<div class="info">
<h3>ONLINE LECTURES</h3>
<small class="text-muted">Last 24 Hours</small>
</div>
<h5 class="success">+35%</h5>
<h3>3 hours</h3>
</div>
</div>
<div class="item offline">
<div class="icon">
<span class="material-icons-sharp">book</span>
</div>
<div class="right">
<div class="info">
<h3>SELF STUDY</h3>
<small class="text-muted">Last 24 Hours</small>
</div>
<h5 class="success">+20%</h5>
<h3>2 hours</h3>
</div>
</div>
</div>
<div class="item add-product">
<div class="div">
<span class="material-icons-sharp">add</span>
<h3>Add Activity</h3>
</div>
</div>
</div>
<!-- Script -->
<script src="./contents/js/dashboard.js"></script>
</body>
</html>