-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearchbar2.html
44 lines (34 loc) · 1.13 KB
/
searchbar2.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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>RAAR</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="./style2.css">
</head>
<body>
<h1>SEARCH FOR STUDENT</h1>
<div class="searchBox">
<input class="searchInput"type="text" id="search" name="" placeholder="Search">
<button class="searchButton" onclick="search()" href="#">
<i class="material-icons">
search
</i>
</button>
</div>
<script>
function search(){
var input = document.getElementById("search").value ;
if(input=="21BCS8637" || input=="Rudra Sharma"){
window.location.assign("index.html") ;
alert("Looks good") ;
}
else{
alert("INVALID INFORMATION!!") ;
return ;
}
}
</script>
</body>
</html>