-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
56 lines (52 loc) · 2.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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" href="css/style.css">
<link rel="stylesheet" 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 bg-primary">
<div class="heading text-center my-5">
<h1>SPARKS BANK</h1>
<h3>Your bank<h3>
</div>
</div>
<div class="col-sm-12 col-md img text-center">
<img src="img/bank7.jpg" class="img-fluid pt-2">
</div>
</div>
<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/transfer2.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>© Sep 2021. Made by <b>Kartikay Pratap Singh</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>