-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
62 lines (60 loc) · 1.32 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Banking System</title>
<link rel="icon" href="favicon.ico">
<style>
body{
background-color: #666699;
margin: 0;
padding: left: 0;
}
h1{
color: #ff8080;
text-align: center;
font-family: 'Sacramento', cursive;
}
h1:hover{
color: white;
}
h2:hover{
color: white;
}
h2{
color: #66c2ff;
}
input[type=submit]{
background-color: #4CAF50;
border: none;
color: white;
padding: 16px 32px;
text-decoration: none;
margin: 4px 2px;
cursor: pointer;
}
</style>
</head>
<body bgcolor=#b3ffb3>
<h1>Bank Search Application</h1>
<hr>
<form method="post" action="https://vast-shore-74260.herokuapp.com/banks?city=MUMBAI" align="center">
<fieldset>
<legend><h2>Welcome to banking search page</h2></legend>
<br>
<div class="search_box"></div>
<select name="bank_id">
<option value="">---------Please select your options---------</option>
<option value="mumbai">MUMBAI</a></option>
<option value="bangalore">Bangalore</option>
<option value="chennai">Chennai</option>
</select>
<br>
<br>
<input type="Submit" name="Submit" value="Submit">
</fieldset>
</form>
<script type="text/javascript" href="index.js"></script>
</body>
</html>