-
Notifications
You must be signed in to change notification settings - Fork 0
/
accounts-deposit.html
41 lines (40 loc) · 1.23 KB
/
accounts-deposit.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
<!DOCTYPE html>
<html>
<head>
<title>Select an Account</title>
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- JS -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="js/amountUpdate.js"></script>
</head>
<body>
<header>
<div id="header-left">
<h1>Tigran Martikian</h1>
<h2>Card Holder</h2>
<h1><div id="accountnum"></div></h1>
<h2>Account Number</h2>
</div>
<div id="header-right">
<h1><div id="chequingBalance"></div></h1>
<h2>Chequing Balance</h2>
<h1><div id="savingsBalance"></div></h1>
<h2>Savings Balance</h2>
</div>
</header>
<div id="account-button-container">
<div id="account-buttons">
<div id="account-buttons-top">
<a href="amount.html" onclick="accountUpdate(this)" id="chequing-deposit" class="account-btn">Chequing</a>
</div>
<div id="account-buttons-bottom">
<a href="amount.html" onclick="accountUpdate(this)" id="savings-deposit" class="account-btn">Savings</a>
</div>
</div>
</div>
<div id="back-btn">
<a href = "dash.html">Go Back</a>
</div>
</body>
</html>