-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (67 loc) · 2.6 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
63
64
65
66
67
68
69
70
71
72
73
<!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">
<title>Bank Of Patron</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="login-aria">
<h1 class="text-center text">Welcome to Bank of Patron</h1>
<div class="submit-area">
<h4>Login</h4>
<input type="email" class="form-control" placeholder="Email">
<br>
<input type="password" class="form-control" placeholder="Password">
<br>
<button id="loginBtn" type="submit" class="btn btn-success">Login</button>
</div>
</div>
<div id="transaction-aria">
<h4 class="text-center text">Transaction History</h4>
<div class="row">
<div class="col-md-4">
<div class="deposit status">
<h5>Deposit</h5>
<h2>$ <span id="currentDeposit">00</span></h2>
</div>
</div>
<div class="col-md-4">
<div class="withdraw status">
<h5>Withdraw</h5>
<h2>$ <span id="currentWithdraw">00</span></h2>
</div>
</div>
<div class="col-md-4">
<div class="balance status">
<h5>Balance</h5>
<h2>$ <span id="currentBalance">1200</span> </h2>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="submit-area">
<h4>Deposit</h4>
<input id="depositAmount" type="number" class="form-control" placeholder="$ Deposit Here">
<br>
<button id="addDeposit" class="btn btn-success">Deposit</button>
</div>
</div>
<div class="col-md-6">
<div class="submit-area">
<h4>Withdraw</h4>
<input id="withdrawAmmount" type="number" class="form-control" placeholder="$ Withdraw Here">
<br>
<button id="withdraw" class="btn btn-success">Withdraw</button>
</div>
</div>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>