-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransfer-funds.html
76 lines (76 loc) · 2.39 KB
/
transfer-funds.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
74
75
76
<!DOCTYPE html>
<html>
<head>
<title>Transfer Funds</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/transferFunds.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="transferfunds">
<h1>Transfer Funds</h1>
<div id="tf-left">
<h2>From</h2>
<select id="from_acc">
<option value="chequing">Chequing</option>
<option value="savings">Savings</option>
</select>
</div>
<div id="tf-right">
<h2>To</h2>
<select id="to_acc">
<option value="chequing">Chequing</option>
<option value="savings">Savings</option>
</select>
</div>
</div>
<div id="transferinfo">
<h1>Enter Amount</h1>
<input type="text" id="transfer-amount">
<h2 id="error-update"><div id="transfer-money"></div></h2>
</div>
<div id="vkb-container">
<div id="vkb">
<div id="keyRow1" class="vkb-row">
<a href="#" id="vkb-btn-1" class="vkb-btn">1</a>
<a href="#" id="vkb-btn-2" class="vkb-btn">2</a>
<a href="#" id="vkb-btn-3" class="vkb-btn">3</a>
</div>
<div id="keyRow2" class="vkb-row">
<a href="#" id="vkb-btn-4" class="vkb-btn">4</a>
<a href="#" id="vkb-btn-5" class="vkb-btn">5</a>
<a href="#" id="vkb-btn-6" class="vkb-btn">6</a>
</div>
<div id="keyRow3" class="vkb-row">
<a href="#" id="vkb-btn-7" class="vkb-btn">7</a>
<a href="#" id="vkb-btn-8" class="vkb-btn">8</a>
<a href="#" id="vkb-btn-9" class="vkb-btn">9</a>
</div>
<div id="keyRow4" class="vkb-row">
<a href="#" id="vkb-btn-del" class="vkb-btn">Delete</a>
<a href="#" id="vkb-btn-0" class="vkb-btn">0</a>
<a href="#" id="vkb-btn-enter" class="vkb-btn">Enter</a>
</div>
</div>
</div>
<div id="back-btn">
<a href = "dash.html">Go Back</a>
</div>
</body>
</html>