-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathindex.php
60 lines (55 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
<!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>Basic Banking System</title>
</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">
<div class="heading text-center my-5">
<h3>Welcome to</h3>
<h1>SPARKS BANK</h1>
</div>
</div>
<div class="col-sm-12 col-md img text-center">
<img src="img/bank.png" class="img-fluid pt-2">
</div>
</div>
<!-- Activity section -->
<div class="row activity text-center">
<div class="col-md act">
<img src="img/user.jpg" class="img-fluid">
<br>
<a href="createuser.php"><button>Create a User</button></a>
</div>
<div class="col-md act">
<img src="img/transfer.jpg" class="img-fluid">
<br>
<a href="transfermoney.php"><button>Make a Transaction</button></a>
</div>
<div class="col-md act">
<img src="img/history.jpg" class="img-fluid">
<br>
<a href="transactionhistory.php"><button>Transaction History</button></a>
</div>
</div>
</div>
<footer class="text-center mt-5 py-2">
<p>© 2020. Made by <b>SHIVANGI AGARWAL</b> <br> 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>