-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotifications.html
More file actions
166 lines (150 loc) · 6.7 KB
/
Copy pathnotifications.html
File metadata and controls
166 lines (150 loc) · 6.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Notifications - Saylani Portal</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
<!-- Bootstrap 5 CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="style.css">
<style>
/* Specific override to ensure links take full space and look right */
.notification-link {
display: flex;
align-items: center;
width: 100%;
text-decoration: none;
color: inherit;
}
.notification-link:hover {
color: inherit;
}
</style>
</head>
<body>
<div class="wrapper d-flex">
<!-- Sidebar -->
<nav id="sidebar">
<div class="sidebar-header">
<img src="Capture.JPG" alt="Saylani Logo" class="img-fluid">
</div>
<ul class="list-unstyled components">
<li>
<a href="dashboard.html">
<i class="fas fa-th-large"></i> Dashboard
</a>
</li>
<li>
<a href="lost-found.html">
<i class="fas fa-search"></i> Lost & Found
</a>
</li>
<li>
<a href="complaints.html">
<i class="fas fa-exclamation-circle"></i> Complaints
</a>
</li>
<li>
<a href="volunteer.html">
<i class="fas fa-hands-helping"></i> Volunteers
</a>
</li>
<li>
<a href="notifications.html" class="active">
<i class="fas fa-bell"></i> Notifications
</a>
</li>
</ul>
<div class="mt-auto p-4">
<button onclick="logout()" class="btn btn-outline-danger w-100 btn-sm">
<i class="fas fa-sign-out-alt me-2"></i> Logout
</button>
</div>
</nav>
<!-- Page Content -->
<div id="content" class="w-100">
<!-- Header -->
<div class="d-flex justify-content-between align-items-center mb-5">
<div>
<h2 class="fw-bold text-dark"><i class="fas fa-bell text-warning me-2"></i>Notifications</h2>
<p class="text-muted mb-0">Stay updated with latest alerts</p>
</div>
<div class="d-flex align-items-center">
<span class="text-muted me-3" id="user-greeting">Welcome, User</span>
<img src="https://ui-avatars.com/api/?name=User&background=0D8ABC&color=fff"
class="rounded-circle shadow-sm" width="45" alt="Avatar">
</div>
</div>
<!-- Notifications Card Clone -->
<div class="row justify-content-center">
<div class="col-md-6 col-lg-5">
<div class="notification-clone-card">
<!-- Header -->
<div class="notif-header">
<h5>
<div class="header-icon"><i class="fas fa-heart text-danger"></i></div>
Notifications
</h5>
<i class="fas fa-check-double notif-check-icon" title="Mark all as read"></i>
</div>
<!-- List -->
<ul class="notif-list">
<!-- Item 1: Complaint -->
<li class="notif-item">
<div class="notif-icon-circle notif-bg-gold">
<i class="fas fa-user-check"></i>
</div>
<div class="notif-content">
<h6>Complaint Marked as Resolved</h6>
<small>22 Oct 2021</small>
</div>
<div class="notif-time">4m</div>
</li>
<!-- Item 2: Laptop Found -->
<li class="notif-item">
<div class="notif-icon-circle notif-bg-indigo">
<i class="fas fa-leaf"></i>
</div>
<div class="notif-content">
<h6>Laptop Found: Matches with Your Report!</h6>
<small>15 Oct 2021</small>
</div>
<div class="notif-time">45m</div>
</li>
<!-- Item 3: Reminder -->
<li class="notif-item">
<div class="notif-icon-circle notif-bg-green">
<i class="fas fa-puzzle-piece"></i>
</div>
<div class="notif-content">
<h6>Reminder: Event Tomorrow</h6>
<small>21 Oct 2021</small>
</div>
<div class="notif-time">48m</div>
</li>
<!-- Item 4: New Event -->
<li class="notif-item">
<div class="notif-icon-circle notif-bg-blue">
<i class="fas fa-pen-nib"></i>
</div>
<div class="notif-content">
<h6>Stay Report!</h6>
<small>22 Oct 2021</small>
</div>
<div class="notif-time">7pm</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- Bootstrap 5 JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>