-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathothers-posts.html
More file actions
50 lines (47 loc) · 1.33 KB
/
others-posts.html
File metadata and controls
50 lines (47 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Other Approved Posts - Lost & Found</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/css/bootstrap.min.css"
/>
<style>
.chat-box {
border: 1px solid #ccc;
padding: 10px;
margin-top: 10px;
max-height: 250px;
overflow-y: auto;
background: #f9f9f9;
}
.chat-message {
padding: 5px;
margin-bottom: 5px;
border-radius: 4px;
}
.chat-message.sent {
background-color: #d1e7dd;
text-align: right;
}
.chat-message.received {
background-color: #f8d7da;
text-align: left;
}
</style>
</head>
<body>
<div class="container mt-4">
<h2>Approved Posts by Other Users</h2>
<div id="postsContainer" 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/others-posts.js"></script>
</body>
</html>