-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.html
70 lines (70 loc) · 2.32 KB
/
settings.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
<!DOCTYPE html>
<html>
<head>
<title>Change Your Pin</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/settingpage.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="changepin">
<h1>Change Your Pin</h1>
<div id = "pindiv">
<h2>Please enter current your PIN:</h2>
<input type = "password" id="oldpin" maxlength="4">
</div>
<div id = "newpindiv">
<h2>Please enter your desired new PIN:</h2>
<input type = "password" id="newpin1" maxlength="4">
</div>
<div id = "newpindiv2">
<h2>Please re-enter your desired new PIN:</h2>
<input type = "password" id="newpin2" maxlength="4">
</div>
<h2 id="error-update"><div id = "feedback"></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>