-
Notifications
You must be signed in to change notification settings - Fork 13
/
home.php
68 lines (43 loc) · 1.5 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
<?php
include "header.php";
include "navbar.php";
if (isset($_GET['loginFailed'])) {
$message = "Invalid Credentials ! Please try again.";
echo "<script type='text/javascript'>alert('$message');</script>";
}
?>
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="home_style.css">
</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">
<form action="customer_login_action.php" method="post">
<div class="flex-item-login">
<h2>Welcome</h2>
</div>
<div class="flex-item">
<input type="text" name="cust_uname" placeholder="Enter your Username" required>
</div>
<div class="flex-item">
<input type="password" name="cust_psw" placeholder="Enter your Password" required>
</div>
<div class="flex-item">
<button type="submit">Login</button>
</div>
</form>
</div>
</div>
</div>
</body>
</html>
<?php include "easter_egg.php"; ?>