-
Notifications
You must be signed in to change notification settings - Fork 0
/
pending_request.htm
144 lines (134 loc) · 3.68 KB
/
pending_request.htm
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./main.css">
<link rel="stylesheet" type="text/css" href="./fonts/font-awesome-4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="../css/global.css">
<!-- FONT AWESOME CSS REFERENCE-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.2/css/all.css">
<style>
* {
box-sizing: border-box;
}
.bg {
background-image: url("pending_request1.jpg");
height: 100%;
background-repeat: no-repeat;
background-size: cover;
}
#myInput {
background-image: url("/css/searchicon.png");
background-position: 10px 5px;
background-repeat: no-repeat;
width: 100%;
font-size: 16px;
padding: 12px 20px 12px 40px;
border: 1px solid #ddd;
margin-bottom: 12px;
}
a
{
text-decoration: none;
color: black;
}
#myTable {
border-collapse: collapse;
width: 100%;
border: 1px solid #ddd;
font-size: 18px;
}
#myTable th, #myTable td {
text-align: left;
padding: 12px;
}
#myTable tr {
border-bottom: 1px solid #ddd;
}
#myTable tr.header, #myTable tr:hover {
background-color: #f1f1f1;
}
</style>
</head>
<body class="bg">
<!-- STICKY HEADER -->
<div class="header">
<div class="Navbar" id="Nav">
<div class="logo-img-new">
<img id="logo-new" src="sislogo.jpeg">
</div>
<div></div>
<div class="Navbar__Link Navbar__Link-toggle">
<i class="fas fa-bars fa-2x"></i>
</div>
<div class="Navbar__Items" >
<div class="Navbar__Link">
<a class="a-header" href="admin.htm">HOME</a>
</div>
<div class="Navbar__Link">
<a class="a-header" href="about_us.htm">ABOUT US</a>
</div>
<div class="Navbar__Link">
<a class="a-header" href="contact_us.htm">CONTACT US</a>
</div>
</div>
</div>
</div>
<!-- END OF STICKY HEADER -->
<img src="pending_request.jpg" style="width:1370px ; height:200px;">
<br>
<br>
<input type="text" id="myInput" onkeyup="myFunction()" placeholder="Search for names.." title="Type in a name">
<table id="myTable">
<tr class="header">
<th style="width:40%;">Name</th>
<th style="width:30%;">Registration Number</th>
<th style="width:30%;">Father's Name</th>
</tr>
<tr>
<td><a href="rahul_pending.htm">Rahul</a></td>
<td>U1704</td>
<td>Aman Mishra</td>
</tr>
<tr>
<td><a href="#">Kaustav Saha</a></td>
<td>U1783</td>
<td>Raman Saha</td>
</tr>
<tr>
<td><a href="#">Vanshika Sood</a></td>
<td>U1793</td>
<td>Sanjeev Sood</td>
</tr>
<tr>
<td><a href="#">Anshul Goyal</a></td>
<td>U1933</td>
<td>Manoj Goyal</td>
</tr>
<tr>
<td><a href="#">Yash Patel</a></td>
<td>U1683</td>
<td>Vasant Patel</td>
</tr>
</table>
<script>
function myFunction() {
var input, filter, table, tr, td, i;
input = document.getElementById("myInput");
filter = input.value.toUpperCase();
table = document.getElementById("myTable");
tr = table.getElementsByTagName("tr");
for (i = 0; i < tr.length; i++) {
td = tr[i].getElementsByTagName("td")[0];
if (td) {
if (td.innerHTML.toUpperCase().indexOf(filter) > -1) {
tr[i].style.display = "";
} else {
tr[i].style.display = "none";
}
}
}
}
</script>
</body>
</html>