-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (65 loc) · 2.85 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
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SZABIST BANK</title>
<link rel="stylesheet" href="./bootstrap/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="./index.css">
</head>
<body>
<script src="./bootstrap/jquery.js"></script>
<script src="./bootstrap/js/bootstrap.min.js"></script>
<h1 class="display-1 text-center">SZABIST BANK</h1>
<hr>
<h3 class="text-center">Welcome to SZABIST ATM</h3>
<div id="pinpad">
<form>
<span class="lead"><b>Enter your PIN</b></span>
<input type="password" id="password" /></br>
<input type="button" value="1" id="1" class="pinButton calc" />
<input type="button" value="2" id="2" class="pinButton calc" />
<input type="button" value="3" id="3" class="pinButton calc" /><br>
<input type="button" value="4" id="4" class="pinButton calc" />
<input type="button" value="5" id="5" class="pinButton calc" />
<input type="button" value="6" id="6" class="pinButton calc" /><br>
<input type="button" value="7" id="7" class="pinButton calc" />
<input type="button" value="8" id="8" class="pinButton calc" />
<input type="button" value="9" id="9" class="pinButton calc" /><br>
<input type="button" value="clear" id="clear" class="pinButton clear" />
<input type="button" value="0" id="0 " class="pinButton calc" />
<input type="button" value="enter" id="enter" class="pinButton enter" />
</form>
</div>
<div class="d-flex justify-content-center align-items-center">
<span class="spinner-border text-danger" role="status"></span>
<span class="m-1 blockquote">INSERT YOUR CARD</span>
</div>
<script src="./index.js"></script>
</body>
<section class="footer fixed-bottom">
<!-- Footer -->
<footer class="text-center text-white" style="background-color: #dc3545;">
<!-- Grid container -->
<div class="container">
<!-- Section: CTA -->
<section class="p-1">
<p class="d-flex justify-content-center align-items-center">
<span class="lead">Muhammad Saqib <br>
Ammara Sheikh</span>
</p>
</section>
<!-- Section: CTA -->
</div>
<!-- Grid container -->
<!-- Copyright -->
<div class="text-center p-3" style="background-color: rgba(0, 0, 0, 0.2);">
© 2022 Copyright: SZABIST
</div>
<!-- Copyright -->
</footer>
<!-- Footer -->
</section>
</html>