-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
69 lines (62 loc) · 2.58 KB
/
index.php
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
</<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>BANKING SYSTEM</title>
<link rel="stylesheet" href="style_index.css">
</head>
<body>
<div class="navbar">
<center>
<hr color="grey" width=70% size=1>
<h1> BASIC BANKING SYSTEM </h1>
<a class="active" href="index.php">Home</a>
<a href="sendmoney.php">Send Money</a>
<a href="customers.php">View All Customers</a>
<a href="transactions.php">Transactions</a>
<a href="contact.php">Contact Us</a>
<a href="about.php">About Us</a>
<hr color="grey" width=70% size=1>
</center>
</div>
<div class="container">
<div class="header"> Welcome to Sparks Bank! </div>
<img src="bank.png" height=65% width=30% alt="Welcome to the sparks bank!" style="padding: 5px; margin-right: 8vw; margin-top:8vh; float:right">
</div>
<center>
<div class="contentbox">
<h1> OUR FACITILIES</h1>
<div class="subcontent">
<img src="user.jpg" alt="View Customers" width=50% height="30%" style=" border-radius: 10px;
border-style: double; display: block; margin: 5px;">
<h2><a href="customers.php"> View Customers </a></h2>
<h4> Here you can view the details of every customer of the bank</h4>
</div>
<div class="subcontent">
<img src="transfer.jpg" alt="Transfer money" width=50% height="30%" style=" border-radius: 10px;
border-style: double; display: block; margin: 5px;">
<h2> <a href="sendmoney.php"> Transfer Money </a></h2>
<h4> Here you can send money from your account</h4>
</div>
<div class="subcontent">
<img src="history.jpg" alt="Check Transactions" width=50% height="30%" style=" border-radius: 10px;
border-style: double; display: block; margin: 5px;">
<h2> <a href="transactions.php"> Transactions </a></h2>
<h4> Here you can check the transactions involved</h4>
</div>
</div>
<div class="pagebreak">
</div>
<div style="width: 80%; color: white; padding: 20px">
<h4>When a customer deposits money into the bank, this money is on loan to the bank and the bank’s most important obligation is to follow the customer’s instructions in relation to this money. The customer can withdraw money from the account at any point, and they can also stop payment of a cheque by informing the bank. If an overdraft agreement is in place, the bank must also give reasonable written notice of any decision to reduce overdraft credit.
</h4>
</div>
<div class="pagebreak">
</div>
<div class="footer"> <center>
Made with ❤️ By Khushi !
</center>
</div>
</center>
</body>
</html>