-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmy-posts.html
More file actions
27 lines (24 loc) · 849 Bytes
/
my-posts.html
File metadata and controls
27 lines (24 loc) · 849 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>My Approved Posts - Lost & Found</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>My Approved Posts</h2>
<div id="myApprovedPosts" class="row"></div>
</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/my-posts.js"></script>
</body>
</html>