-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomplaints.html
More file actions
188 lines (170 loc) · 7.99 KB
/
Copy pathcomplaints.html
File metadata and controls
188 lines (170 loc) · 7.99 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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Complaints - 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">
<i class="fas fa-search"></i> Lost & Found
</a>
</li>
<li>
<a href="complaints.html" class="active">
<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">
<!-- Empty or Breadcrumb if needed, keeping it clean for now -->
</div>
<div class="container-fluid">
<!-- Submit Complaint Card -->
<div class="complaint-card mb-4">
<div class="complaint-header">
<i class="fas fa-edit"></i>
<h4>Submit Complaint</h4>
</div>
<form>
<!-- Title -->
<div class="mb-3">
<label class="form-label-clone">Complaint Title</label>
<input type="text" class="form-control-clone" placeholder="">
</div>
<!-- Category -->
<div class="mb-3">
<label class="form-label-clone">Category</label>
<select class="form-control-clone">
<option>Pickpockets</option>
<option>Harassment</option>
<option>Lost Item</option>
<option>Other</option>
</select>
</div>
<!-- Description -->
<div class="mb-3">
<label class="form-label-clone">Description</label>
<textarea class="form-control-clone" placeholder=""></textarea>
</div>
<!-- Location -->
<div class="mb-3">
<label class="form-label-clone">Location</label>
<select class="form-control-clone">
<option></option>
<option>Cafeteria</option>
<option>Library</option>
<option>Main Gate</option>
</select>
</div>
<!-- Urgency -->
<div class="urgency-container mb-4">
<div class="urgency-label">
<i class="fas fa-calendar-check"></i> Urgency
</div>
<div class="urgency-options">
<label class="urgency-option">
<input type="radio" name="urgency" value="low" checked>
<span class="urgency-dot dot-low"></span> Low
</label>
<label class="urgency-option">
<input type="radio" name="urgency" value="medium">
<span class="urgency-dot dot-medium"></span> Medium
</label>
<label class="urgency-option">
<input type="radio" name="urgency" value="high">
<span class="urgency-dot dot-high"></span> High
</label>
</div>
</div>
<!-- Submit Button -->
<button type="button" class="btn-submit-complaint">Submit Complaint</button>
</form>
</div>
<!-- My Complaints Table Section -->
<div class="my-complaints-section">
<div class="table-header-custom">
<h5>My Complaints</h5>
<div class="table-header-meta">Status: All | Category: All</div>
</div>
<div class="table-responsive">
<table class="custom-table">
<thead>
<tr>
<th>ID</th>
<th>Complaints</th>
<th>Location</th>
<th>Status</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<tr>
<td>503</td>
<td><strong>Wi-Fi Not Working</strong></td>
<td><i class="fas fa-map-marker-alt text-muted me-1"></i> Dept Next</td>
<td><span class="status-badge pending">Pending</span></td>
<td>
<div class="action-dots">...</div>
</td>
</tr>
<tr>
<td>501</td>
<td><strong>Leaky Pipe</strong></td>
<td><i class="fas fa-map-marker-alt text-muted me-1"></i> Eco Park</td>
<td><span class="status-badge resolved">Resolved</span></td>
<td>
<div class="action-dots">...</div>
</td>
</tr>
</tbody>
</table>
</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>