-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.php
executable file
·66 lines (55 loc) · 1.87 KB
/
main.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> DS Online banking</title>
<link rel="icon" type="image/png" href="rupee.png">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css" >
<!-- Optional theme -->
<link rel="stylesheet" href="css/bootstrap-theme.min.css" >
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet" type="text/css">
<style>
.ms
{
font-family: Montserrat,sans-serif;
}
</style>
</head>
<!-- body -->
<body>
<div class="container">
<!-- page header -->
<div class="page-header">
<h1 class="ms"><a href="main.php" target="_parent"><img src="rupee.png"></a>DS Bank</h1>
</div>
<!-- login boxes -->
<!-- staff -->
<div class="col-sm-6 text-center">
<fieldset class="ms" style="background-color: #ffd633;">
<h3 style="color: white">Log in as our Employee</h3>
<img src="staff.png" class="img-circle"><br><br>
<form action="staff_login.php">
<input type="submit" value="Login" class="btn btn-lg" ><br>
</form>
<p></p>
</fieldset>
</div>
<!-- customers -->
<div class="col-sm-6 text-center">
<fieldset class="ms" style="background-color:#66d9ff">
<h3 style="color: white">Log in as our Customer</h3>
<img src="customers.png" class="img-circle"><br><br>
<form action="cust_login.php">
<input type="submit" name="customer" value="Login" class="btn btn-lg"><br>
</form>
<p></p>
</fieldset>
</div>
</div>
<!-- footer -->
<footer class="container text-center">
Copyrights Reserved
</footer>
</body>
</html>