-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
85 lines (74 loc) · 2.73 KB
/
index.php
File metadata and controls
85 lines (74 loc) · 2.73 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!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" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/navbar.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>Basic Banking System</title>
<style type="text/css">
.container-fluid{
padding-top: 100px;
}
button{
position: relative;
display: inline-block;
padding: 12px 36px;
margin: 10px 0;
color: #fff;
text-decoration: none;
text-transform: uppercase;
font-size: 18px;
letter-spacing: 2px;
border-radius: 8px;
background-color: #9dc5c3;
background-image: linear-gradient(315deg, #9dc5c3 0%, #5e5c5c 74%);
}
</style>
</head>
<body>
<?php
include 'navbar.php';
?>
<div class="container-fluid">
<!-- Introduction section -->
<div class="intro py-1">
<div >
<div >
<center> <h1>Welcome to Basic Banking System</h1></center>
</div>
</div>
<div class="col-sm-12 col-md img text-center">
</div>
</div>
<!-- Activity section -->
<div class="row activity text-center">
<div class="col-md act">
<br><br>
<img src="img/user1.jpg" class="img-fluid">
<br><br>
<a href="transfermoney.php"><button>View all Users</button></a>
</div>
<div class="col-md act">
<br><br>
<img src="img/transfer_money.jpg" class="img-fluid">
<br><br>
<a href="transfermoney.php"><button>Transfer Money</button></a>
</div>
<div class="col-md act">
<img src="img/history.png" class="img-fluid">
<br>
<a href="transactionhistory.php"><button >View Transfer History</button></a>
</div>
</div>
</div>
<footer class="text-center mt-5 py-2">
<p>© 2021. Made by <b>Shiva Singh</b> <br> For the Project of <b>The Sparks Foundation</b></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/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
</body>
</html>