-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlost-found.html
More file actions
170 lines (152 loc) · 7.77 KB
/
Copy pathlost-found.html
File metadata and controls
170 lines (152 loc) · 7.77 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
167
168
169
170
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lost & Found - 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">
</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" class="active">
<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">
<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">Lost & Found Report</h2>
<p class="text-muted mb-0">Submit a report for lost or found items.</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>
<div class="row justify-content-center">
<div class="col-md-8 col-lg-7">
<div class="card border-0 shadow-sm p-4 rounded-4">
<h4 class="fw-bold mb-4">Report Lost Item</h4>
<form id="lost-found-form">
<div class="mb-3">
<label class="form-label text-muted small fw-bold">Item Name</label>
<input type="text" class="form-control" id="item-title" required>
</div>
<div class="row mb-3">
<div class="col-md-6">
<label class="form-label text-muted small fw-bold">Category</label>
<select class="form-select" id="item-category">
<option>Electronics</option>
<option>Accessories</option>
<option>Books</option>
<option>Mobiles</option>
</select>
</div>
<div class="col-md-6">
<label class="form-label text-muted small fw-bold">Report Type</label>
<select class="form-select" id="item-type">
<option value="Lost">Lost Item</option>
<option value="Found">Found Item</option>
</select>
</div>
</div>
<div class="mb-3">
<label class="form-label text-muted small fw-bold">Description</label>
<textarea class="form-control" id="item-desc" rows="3"></textarea>
</div>
<div class="mb-3">
<label class="form-label text-muted small fw-bold">Location</label>
<select class="form-select" id="item-location">
<option>Main Campus</option>
<option>Lab 1</option>
<option>Cafeteria</option>
<option>Library</option>
</select>
</div>
<div class="mb-4">
<label class="form-label text-muted small fw-bold d-block">Urgency</label>
<div class="urgency-pills">
<div class="flex-grow-1">
<input type="radio" name="urgency" id="low" value="low" class="urgency-radio"
checked>
<label for="low" class="urgency-label">Low</label>
</div>
<div class="flex-grow-1">
<input type="radio" name="urgency" id="medium" value="medium"
class="urgency-radio">
<label for="medium" class="urgency-label">Medium</label>
</div>
<div class="flex-grow-1">
<input type="radio" name="urgency" id="high" value="high" class="urgency-radio">
<label for="high" class="urgency-label">High</label>
</div>
</div>
</div>
<button type="submit" class="btn btn-saylani-blue w-100 py-2 fw-bold">Submit
Complaint</button>
</form>
</div>
</div>
</div>
<!-- Recent Posts List (Kept for functionality) -->
<div class="row justify-content-center mt-5">
<div class="col-md-8 col-lg-7">
<h5 class="fw-bold mb-3">Recent Listings</h5>
<div id="items-list" class="list-group list-group-flush bg-white rounded-4 shadow-sm">
<!-- Items will be loaded here dynamically -->
<div class="text-center p-4">
<span class="text-muted">Loading items...</span>
</div>
</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>