-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathhome.php
70 lines (57 loc) · 2.21 KB
/
home.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
<?php
include "header.php";
include "navbar.php";
?>
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GRIP Bank</title>
<link rel="icon" href="/images/tsf.png" type="image/x-icon"/>
<link rel="stylesheet" href="home_style.css">
<link rel="stylesheet" href="style1.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap" rel="stylesheet">
</head>
<body>
<div class="flex-container-background">
<div class="flex-container">
<div class="flex-item-0">
<h1 id="form_header">Your Bank at Your Fingertips.</h1>
</div>
</div>
<div class="flex-container">
<div class="flex-item-1">
<div class="flex-item-login">
<h2 style="text-align:center;">Welcome</h2>
</div>
<div class="flex-item">
<form method="get" action="money.php">
<button type="submit" style="float:right;width:470px;">Money Transfer</button>
</form>
</div>
<div class="flex-item">
<form method="get" action="history.php">
<button type="submit" style="float: right;width:475px;">Transaction History</button>
</form>
</div>
</div>
</form>
</div>
</div>
</div>
</br>
</br>
<div class="foot">
<footer class="bg-light text-center text-lg-start">
<!-- Copyright -->
<div class="text-center p-3" style="background-color: rgba(0, 0, 0, 0.2);text-align:center;color:white;">
© 2021 Copyright - Made by <strong>Rakshitha Murthy</strong> :
<a class="text-dark" href="https://www.thesparksfoundationsingapore.org/" target="_blank" style="color:white;"> The Sparks
Foundation </a>
</div>
<!-- Copyright -->
</footer>
</body>
</html>
<?php include "easter_egg.php"; ?>