-
Notifications
You must be signed in to change notification settings - Fork 0
/
transaction.html
58 lines (49 loc) · 1.99 KB
/
transaction.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
<!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">MAKE YOUR TRANSACTION</h3>
<div class="d-grid gap-2 col-6 mx-auto">
<a class="btn btn-danger btn-lg m-2" href="./cashWithdrawal.html">WITHDRAWAL</a>
<a class="btn btn-danger btn-lg m-2" href="./moneyDeposit.html">MONEY DEPOSIT</a>
<a class="btn btn-danger btn-lg m-2" href="./balanceTransfer.html">BALANCE TRANSFER</a>
<a class="btn btn-danger btn-lg m-2" href="./balanceInquiry.html">BALANCE INQUIRY & BILLING</a>
<a class="btn btn-danger btn-lg m-2" href="./nearestATM.html">NEAREST ATM</a>
</div>
</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-2">
<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>