-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
65 lines (52 loc) · 1.08 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
<html>
<head>
<title>E-banking</title>
<style>
.container{
width: 360px;
padding: 4% 4% 4%;
margin : auto;
box-shadow: 10px 10px 5px #888888;
background-color: #fff;
text-align: center;
position:relative;
top:50px;
vertical-align: middle;
}
p{
font-family: sans-serif;
font-weight: bold;
font-size: 20px;
}
button{
width :150px;
margin :5px;
padding:2px;
font-weight: bold;
background-color: #428BCA;
text-align: center;
color: white;
font-family: verdana;
text-decoration: none;
}
button:hover {
background: white;
color: black;
}
body{
background-color: PaleTurquoise ;
}
</style>
</head>
<body>
<div class="container">
<?php
Print "<p><B> <hr><br>WELCOME TO E-BANKING<br><hr></B> </p>";
?>
<button type="button" onclick="location.href='login.php'">LOGIN</button><br/>
<button type="button" onclick="location.href='register.php'">REGISTER</button>
<hr>
<center><b><br>E-Banking by Nisha Chaube © <?php echo date("Y"); ?></b></center><br>
<hr>
</body>
</html>