-
Notifications
You must be signed in to change notification settings - Fork 0
/
dash.html
42 lines (42 loc) · 1.4 KB
/
dash.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
<!DOCTYPE html>
<html>
<head>
<title>Generic Bank ATM Dashboard</title>
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="js/main.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="button-container">
<div id="buttons">
<h2><div id="error-msg-dash"></div></h2>
<div id="buttons-top">
<a href="accounts-withdraw.html" class="dash-btn">Withdraw</a>
<a href="accounts-deposit.html" class="dash-btn">Deposit</a>
<a href="transfer-funds.html" class="dash-btn">Transfer Funds</a>
</div>
<div id="buttons-bottom">
<a href="#" onclick="fastCash(60,'chequing')" class="dash-btn">Fast Cash: $60</a>
<a href="settings.html" class="dash-btn">Change Pin</a>
<a href="index.html" onclick="logout()" class="dash-btn">Log Out</a>
</div>
</div>
</div>
</body>
</html>