-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.php
73 lines (62 loc) · 3.16 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
70
71
72
73
<!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 id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="img/Title Page.png" class="img-fluid pt-2">
</div>
<div class="carousel-item">
<img src="img/About Page.png" class="img-fluid pt-2">
</div>
<div class="carousel-item">
<img src="img/Template 3.png" class="img-fluid pt-2">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!-- Activity section -->
<div>
</div>
<img src="img/Listed Items.png" class="img-fluid pt-2">
<div style="z-index: 1;position: relative;left: 50%;bottom: 400px;" >
<a style=" display:block;margin: 30px;" href="createuser.php"><button class="btn-lg">Create a User</button></a>
<a style="display:block;margin: 30px;" href="transfermoney.php"><button class="btn-lg">Make a Transaction</button></a>
<a style="display:block;margin: 30px;" href="transactionhistory.php"><button class="btn-lg">Transaction History</button></a>
</div>
</div>
</div>
<footer class="text-center mt-5 py-2">
<p>© 2021. Made by <b>Sujana K</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/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
</body>
</html>