forked from yuherus/uiux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetting.html
More file actions
243 lines (242 loc) · 13.5 KB
/
Copy pathsetting.html
File metadata and controls
243 lines (242 loc) · 13.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>KPlecturer</title>
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="header.css">
<link rel="stylesheet" href="sidebar.css">
<link rel="stylesheet" href="setting.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<div class="container">
<div id="sidebar-container">
<div id="sidebar">
<a class="sidebar-header" href="/index.html">
<img src="image/logo.png" alt="Logo" class="logo">
<h2>KPlecturer</h2>
</a>
<ul class="sidebar-menu">
<li>
<a href="#">
<i class="fas fa-home" ></i>
<div style="display: flex; width: 100%; justify-content:space-between; align-items:center;">
Home
<i class="fas fa-chevron-right chevron-icon"></i>
</div>
</a>
<ul class="submenu">
<li><a href="index.html">Dashboard</a></li>
<li><a href="kpilist.html">KPI</a></li>
<li><a href="plan.html">Plan</a></li>
<li><a href="activitylist.html">Activity</a></li>
</ul>
</li>
<li>
<a href="statistics.html">
<i class="fas fa-star"></i>
Statistics
</a>
</li>
<li>
<a href="setting.html" class="menu-active">
<i class="fas fa-cog"></i>
Settings
</a>
</li>
<li>
<a href="#">
<i class="fas fa-user"></i>
<div style="width:100%; display:flex; justify-content:space-between; align-items:center;">
Help
<i class="fas fa-chevron-right chevron-icon"></i>
</div>
</a>
<ul class="submenu">
<li><a href="howtouse.html">How to use</a></li>
<li><a href="aboutus.html">About us</a></li>
</ul>
</li>
</ul>
<div class="sidebar-footer">
<a href="recomendation.html" class="btn-recommendation">Get Recommendation <i class="fas fa-arrow-right"></i></a>
</div>
</div>
</div>
<div class="dashboard">
<div id="header-container">
<div class="header">
<div class="sidebar-toggle">
<i class="fa-solid fa-bars menu-icon" onclick="toggleSidebar()"></i>
</div>
<div class="search-bar">
<div class="logo-section">
<img src="image/Logo_Đại_học_Bách_Khoa_Hà_Nội.svg" alt="University Logo" class="logo">
<div style="display:flex; flex-direction: column; margin-right:16px;">
<span class="workspace">University</span>
<span class="separator">Workspace</span>
</div>
<i class="fa-solid fa-sort sort-icon"></i>
</div>
<div class="search-section">
<input type="text" class="search-input" placeholder="Search for tasks, events ..">
</div>
<div class="notification-section noti-dropdown">
<img src="image/notification-badge.svg" alt="Notifications"
class="notification-icon noti-dropdown-btn">
<div class="noti-dropdown-content">
<div class="noti-item">
<span class="noti-icon">🕒</span>
<div class="noti-text">
<strong>Hi! It's KPIecture.</strong>
<p>You're running late. Finish your Coding activity before it's too late!</p>
</div>
</div>
<div class="noti-item">
<span class="noti-icon">⏳</span>
<div class="noti-text">
<strong>Hi! It's KPIecture.</strong>
<p>You just have 1 hour to make your Prepare Text Book done before you're left
behind!</p>
</div>
</div>
<div class="noti-item">
<span class="noti-icon">⏳</span>
<div class="noti-text">
<strong>Hi! It's KPIecture.</strong>
<p>Time's up! Complete your Assistance task now to reach KPI goal!</p>
</div>
</div>
<a href="#" class="view-all">View all notifications</a>
</div>
</div>
</div>
<div class="account-section">
<div style="display:flex; flex-direction: column;">
<span class="account-name">Cristiano</span>
<span class="account-settings">Hust Student</span>
</div>
<div class="user-dropdown">
<img src="image/user-logo.jpg" alt="Profile Picture" class="profile-picture user-dropbtn">
<div class="user-dropdown-content">
<a href="#">
<i class="fa-solid fa-user"></i>
Profile Settings
</a>
<a href="#">
<i class="fa-solid fa-arrow-right-from-bracket"></i> Log Out
</a>
</div>
</div>
</div>
</div>
</div>
<div class="setting-tabs">
<div class="tabs">
<button class="tab-button active" onclick="openTab(event, 'account-setting')">Account Setting</button>
<button class="tab-button" onclick="openTab(event, 'change-password')">Change Password</button>
<button class="tab-button" onclick="openTab(event, 'notifications')">Notifications</button>
</div>
<div id="account-setting" class="tab-content active">
<span style="font-size: 24px; font-weight:bold;">Account Setting</span>
<div class="profile-section">
<div class="profile-upload-picture">
<span>Your Profile Picture</span>
<div class="profile-picture">
<label for="upload-photo" class="upload-label">
<img src="image/gallery-add.png" alt="Upload your photo" />
<input type="file" id="upload-photo" style="display: none;" />
</label>
<p style="position:relative; top:-72px; left: 48px; width:200px;">Upload your photo</p>
</div>
</div>
<div class="profile-info">
<div style="display: flex; width:100%;">
<div class="form-group">
<label for="full-name">Full name</label>
<input type="text" id="full-name" placeholder="Please enter your full name">
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" placeholder="Please enter your email address">
</div>
</div>
<div style="display: flex;">
<div class="form-group">
<label for="username">Username</label>
<input type="text" id="username" placeholder="Please enter your username">
</div>
<div class="form-group">
<label for="phone-number">Phone number</label>
<input type="text" id="phone-number" placeholder="+1 | Please enter your phone number">
</div>
</div>
<div class="form-group bio">
<label for="bio">Bio</label>
<textarea id="bio" placeholder="Write your Bio here e.g your hobbies, interests ETC"></textarea>
</div>
<button class="btn">Update Profile</button>
</div>
</div>
</div>
<div id="change-password" class="tab-content">
<div style="display: flex; justify-content:space-between;">
<div style="width:100%">
<h2>Change Password</h2>
<div class="form-group">
<label for="current-password">Current Password</label>
<input type="password" id="current-password" placeholder="Current Password">
</div>
<div class="form-group">
<label for="new-password">New Password</label>
<input type="password" id="new-password" placeholder="New Password">
</div>
<div class="form-group">
<label for="confirm-new-password">Confirm New Password</label>
<input type="password" id="confirm-new-password" placeholder="Confirm New Password">
</div>
<button class="btn">Confirm</button>
</div>
<img src="/image/setting-img.png" alt="setting-img">
</div>
</div>
<div id="notifications" class="tab-content" >
<div style="display: flex; justify-content:space-between;">
<div>
<h2>Notifications</h2>
<!-- Content for Notifications -->
<div class="form-group-radio">
<input type="checkbox" id="notif-1" checked>
<label for="notif-1">Receive notification about upcoming activities</label>
</div>
<div class="form-group-radio">
<input type="checkbox" id="notif-2" checked>
<label for="notif-2">Receive notification about an activity about to expire</label>
</div>
<div class="form-group-radio">
<input type="checkbox" id="notif-3" checked>
<label for="notif-3">Receive notification about a plan about to expire</label>
</div>
<div class="form-group-radio">
<input type="checkbox" id="notif-4" checked>
<label for="notif-4">Receive notifications when a plan is not completed</label>
</div>
<div class="form-group-radio">
<input type="checkbox" id="notif-5">
<label for="notif-5">Receive notifications when KPIs are not achieved</label>
</div>
<button class="btn">Save</button>
</div>
<img src="/image/setting-img.png" alt="setting-img">
</div>
</div>
</div>
</div>
</div>
<script src="sidebar.js"></script>
<script src="setting.js"></script>
</body>
</html>