-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbrowse.php
More file actions
64 lines (52 loc) · 1.54 KB
/
Copy pathbrowse.php
File metadata and controls
64 lines (52 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Browse All Items</title>
<link rel="stylesheet" href="style.css">
</head>
<body class="home-page">
<!-- HEADER -->
<header class="home-header">
<div class="home-brand">
<div class="home-logo">📦</div>
<div>
<h1>College Lost & Found</h1>
<p>Browse All Items</p>
</div>
</div>
<a href="index.php" class="browse-btn">← Back to Home</a>
</header>
<hr class="home-divider">
<!-- CONTENT -->
<section class="home-hero">
<span class="ai-pill">📂 All Reported Items</span>
<h2>Lost & Found Items</h2>
<p>
This page displays all lost and found items reported by users.
Items will be automatically matched using AI in future updates.
</p>
</section>
<!-- ITEMS PLACEHOLDER -->
<section class="home-card-grid" id="itemsContainer">
<div class="home-card lost-card">
<div class="home-icon lost-icon">🔍</div>
<h3>Lost Item</h3>
<p><strong>Item:</strong> Black Wallet</p>
<p><strong>Location:</strong> Main Library</p>
<p><strong>Status:</strong> Waiting for match</p>
</div>
<div class="home-card found-card">
<div class="home-icon found-icon">📦</div>
<h3>Found Item</h3>
<p><strong>Item:</strong> Leather Wallet</p>
<p><strong>Location:</strong> Main Library</p>
<p><strong>Status:</strong> Possible match found</p>
</div>
</section>
<script src="script.js"></script>
<script>
loadMatches();
</script>
</body>
</html>