-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNotifications.html
More file actions
30 lines (26 loc) · 955 Bytes
/
Notifications.html
File metadata and controls
30 lines (26 loc) · 955 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Lost & Found with Notifications</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/css/bootstrap.min.css"
/>
</head>
<body>
<div class="container mt-4">
<h2>Approved Posts by Other Users</h2>
<div id="postsContainer" class="row"></div>
</div>
<!-- Notifications -->
<div id="notificationPanel" class="fixed-bottom p-3"></div>
<footer class="text-center mt-5 mb-3">
<small>© 2025 Lost & Found UMT Campus</small>
</footer>
<script src="https://www.gstatic.com/firebasejs/9.23.0/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.23.0/firebase-firestore-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.23.0/firebase-auth-compat.js"></script>
<script src="static/Js/Notifications.js"></script>
</body>
</html>