-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjanta.html
136 lines (134 loc) · 3.54 KB
/
janta.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='https://unpkg.com/boxicons@2.0.9/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="one.css">
<title>online services</title>
</head>
<body>
<section id="sidebar">
<a href="#" class="brand">
<i class='bx bxs-user'></i>
<span class="text">ADMINISTRATION</span>
</a>
<ul class="side-menu top">
<li>
<a href="civic.html">
<i class='bx bxs-group' ></i>
<span class="text">Civic Department</span>
</a>
</li>
<li class="active">
<a href="janta.html">
<i class='bx bxs-edit-alt' ></i>
<span class="text">Janta Connect</span>
</a>
</li>
<li>
<a href="karamchari.html">
<i class='bx bxs-landmark' ></i>
<span class="text">Karamchari Connect</span>
</a>
</li>
<li>
<a href="budget.html">
<i class='bx bx-rupee'></i>
<span class="text">Budget and Tax</span>
</a>
</li>
<li>
<a href="infra.html">
<i class='bx bxs-landmark' ></i>
<span class="text">Social Infrastructure</span>
</a>
</li>
</ul>
<ul class="side-menu">
<li>
<a href="index.html" class="logout">
<i class='bx bxs-log-out-circle' ></i>
<span class="text">Logout</span>
</a>
</li>
</ul>
</section>
<!-- SIDEBAR -->
<!-- CONTENT -->
<section id="content">
<!-- NAVBAR -->
<nav>
<i class='bx bx-menu'></i>
<a href="#" class="nav-link">Search Query ID </a>
<form action="#">
<div class="form-input">
<input type="search" placeholder="Search query id here...">
<button type="submit" class="search-btn"><i class='bx bx-search' ></i></button>
</div>
</form>
</form>
<input type="checkbox" id="switch-mode" hidden>
<label for="switch-mode" class="switch-mode"></label>
<a href="#" class="profile">
<img src="harsh.jpeg" alt="USER IMAGE">
</a>
</nav>
<!-- NAVBAR -->
<section id="employees" class="employees-section">
<h1 class="section-heading">CITIZEN GRIEVANCES</h1>
<table class="employee-table">
<thead>
<tr>
<th style="width: 6rem;">S_No.</th>
<th>Query</th>
<th>Employee alloted</th>
<th>Query Date</th>
<th>Grievant</th>
<th>Department</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>E123</td>
<td>John Doe</td>
<td>2023-01-15</td>
<td>35677895</td>
<td>Transportation</td>
<td>Pending</td>
</tr>
<tr>
<td>2</td>
<td>T123</td>
<td>Jane Smith</td>
<td>2023-02-20</td>
<td>247864576</td>
<td>Water</td>
<td>Completed</td>
</tr>
<tr>
<td>3</td>
<td>A123</td>
<td>Michael Johnson</td>
<td>2023-03-10</td>
<td>1589776589</td>
<td>Civil</td>
<td>Completed</td>
</tr>
<tr>
<td>4</td>
<td>T126</td>
<td>Sarah Davis</td>
<td>2023-04-05</td>
<td>1589745767</td>
<td>Seawage</td>
<td>Pending</td>
</tr>
</tbody>
</table>
</section>
<script src="script.js"></script>
</body>
</html>