-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (67 loc) · 2.4 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
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Generic Bank ATM</title>
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script>
var users = {
'accountNumber': 0,
'accountPin': 0,
'chequingBalance': 0,
'savingsBalance': 0
};
sessionStorage.setItem("User", JSON.stringify(users));
</script>
<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>
<img id="logo-img" src="images/gb-logo-white.png">
<h1 id="logo-title">Generic Bank</h1>
</header>
<div id="main-1">
<h1>Welcome to a Generic Bank ATM!</h1>
<h2>Please tap the "Start" button to begin.</h2>
<a id="start-btn" href="#">START</a>
</div>
<div id="main-2">
<h1>Please enter your Account Number:</h1>
<h2>This is the 16-digit number on the front of your bank card.</h2>
<input type = "text" id="accnum" maxlength="16">
</div>
<div id="main-3">
<h1>Please enter your PIN:</h1>
<h2>Your PIN is exactly 4 digits long.</h2>
<input type = "password" id="numpin" maxlength="4">
</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>
</body>
</html>