-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
64 lines (62 loc) · 3.59 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/navbar.css">
<title>Banking System</title>
<link rel="shortcut icon" type="image/jpg" href="https://img.icons8.com/external-vitaliy-gorbachev-blue-vitaly-gorbachev/60/000000/external-bank-business-vitaliy-gorbachev-blue-vitaly-gorbachev.png"/>
</head>
<body>
<?php
include 'navbar.php';
?>
<div class="container-fluid">
<!-- Introduction section -->
<div class="row intro py-1">
<div class="col-sm-12 col-md-12 col-lg-12" style="padding-bottom: 4%;">
<div class="heading text-center my-5">
<h3>Welcome to the</h3>
<h1>SPARKS BANK</h1>
</div>
</div>
<div class="col-sm-12 col-md-12 col-lg-6 img text-center">
<img src="img/bank.png" class="img-fluid pt-2">
</div>
<div class="col-sm-12 col-md-12 col-lg-6 text-justify">
<p style="font-family: Montserrat;">A bank is a financial institution that accepts deposits from the public and creates a demand deposit while simultaneously making loans. Lending activities can be directly performed by the bank or indirectly through capital markets.
<br>Following are the few services which bank provides :- Advancements of loans, Cheque payments, Discounting on bills of exchange, Collecting and paying the credit instruments, Guarantee by banks, Consultancy, Credit cards, Funds remittance, Debit cards.
</p>
</div>
</div>
</br>
<!-- Activity section -->
<div class="row activity text-center">
<div class="col-md act">
<img src="https://img.icons8.com/color/250/000000/user.png"/>
<br>
<a href="createuser.php"><button>Create a User</button></a>
</div>
<div class="col-md act">
<img src="https://img.icons8.com/external-kiranshastry-lineal-color-kiranshastry/250/000000/external-customer-business-and-management-kiranshastry-lineal-color-kiranshastry.png"/>
<br>
<a href="transfermoney.php"><button>Customer Details</button></a>
</div>
<div class="col-md act">
<img src="https://img.icons8.com/fluency/250/000000/refund-2.png"/>
<br>
<a href="transactionhistory.php"><button>Transaction History</button></a>
</div>
</div>
</div>
<footer class="text-center mt-5 py-2">
<p>© 2021. Made by <b>Smit Viradiya.</b> The Sparks Foundation</p>
</footer>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
</body>
</html>