-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathactivityTracking.html
More file actions
179 lines (164 loc) · 7.2 KB
/
activityTracking.html
File metadata and controls
179 lines (164 loc) · 7.2 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
<!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/activityTracking.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" class="active">
<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">
<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>Activity Tracking</h1>
</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>