-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
74 lines (69 loc) · 2.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
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="styles.css">
<!-- font awesome -->
<script src="https://kit.fontawesome.com/d2747108de.js" crossorigin="anonymous"></script>
<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>
<title>Home</title>
<style>body {
background-image: url("img/5.jpg");
background-size: cover;
height: 100%;
width: 100%;
background-repeat: no-repeat;
background-attachment: fixed;
}
p{
color: black;
font-size: 2rem;
font-weight: bold;
}</style>
</head>
<body>
<!-- _______NAVIGATION BAR_______ -->
<div id="title">
<nav id="navbar" class="navbar navbar-expand-lg navbar-dark ">
<p><a id="navbar-brand" href="index.php">CITY <span> BANK</span></a></p>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarTogglerDemo01"
aria-controls="navbarTogglerDemo01" aria-expanded"false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarTogglerDemo01">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.php">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#footer">Contact</a>
</li>
</ul>
</div>
</nav>
</div>
<div class="intro">
Welcome to City Banking System !!!
</div>
<div class="cont">
<form action="">
<br>
<button id="vcustomer" class="btn btn-primary btn-lg btn-block " name="View Customer" value="View Customer"
formaction="customer.php">View Customer</button><br>
<button id="vhistory" class="btn btn-primary btn-lg btn-block " name="Transaction History"
value="Transaction History" formaction="history.php">Transaction Historys</button>
</form>
</div>
</body>
<footer id="footer">
<i class="social-icon fas fa-phone-square-alt"></i>
<i class="social-icon fab fa-twitter-square"></i>
<i class="social-icon fas fa-envelope-square"></i>
<p>©️ Copyright 2021 by - Jaladhi Sonagara</p>
</footer>
</html>