-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
54 lines (49 loc) · 1.84 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/Images/favicon.ico" type="image/gif" sizes="16x16">
<title>Home</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link href="CSS\style2.css" rel="stylesheet">
</head>
<div class="cards">
<div class="card" style="width: 18rem;">
<div class="card-body">
<h5 class="card-title">Customer-Details</h5>
<p class="card-text">List of all Customer's holding an account in this bank</p>
<button type="button" onclick="myFunction1()" class="btn btn-dark">Click Here</button>
</div>
</div>
<div class="card" style="width: 18rem;">
<div class="card-body">
<h5 class="card-title">Transfer Money</h5>
<p class="card-text">Transfer-Money to other customer's holding account in this bank</p>
<button type="button" onclick="myFunction2()" class="btn btn-dark">Transfer Money</button>
</div>
</div>
<div class="card" style="width: 18rem;">
<div class="card-body">
<h5 class="card-title">Transaction History</h5>
<p class="card-text">All the Transaction's Successfully completed till now.</p>
<button type="button" onclick="myFunction3()" class="btn btn-dark">See Here</button>
</div>
</div>
</div>
</body>
<script>function myFunction1()
{
window.open("/details");
}
function myFunction2()
{
window.open("/transfer");
}
function myFunction3()
{
window.open("/history");
}
</script>
</html>