-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
67 lines (59 loc) · 3.27 KB
/
login.html
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
<!-- ************************************************************************************************************************************ -->
<!--************************************************* LOGIN GATWAY FOR RATNALAS BANK ************************************************* -->
<!-- ************************************************************************************************************************************ -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./CSS/style.css">
<link rel="stylesheet" href="./CSS/login.css">
<link rel="shortcut icon" href="./Images/favicon-32x32.png" type="image/x-icon">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"> <!--boot-strap-->
<title>Homepage</title>
</head>
<body class="body">
<script src="SIGNUP.js"></script>
<!--************************************************ Navigation Bar ****************************************************************** -->
<div class="nav-bar">
<div class="profile">
<a href="#"><img src="./Images/logo.png" alt="Person" width="60" height="60"></a>
</div>
<ul class="nav-bar-list">
<li class="nav-item"><a href="./homepage.php">Home</a></li>
<li class="nav-item"><a href="./customers.php">Customers</a></li>
<li class="nav-item"><a href="./history.php">Transcations</a></li>
<li class="nav-item"><a href="./support.html">Support</a></li>
</ul>
</div>
<!--************************************************ CAD FOR THE LOGIN ************************************************************** -->
<div class="content">
<!-- LEFT COLUMN -->
<div class="left">
<h2 style="color: #298ba4;">LOGIN</h2>
<form name="myForm" action="post">
<input type="email" placeholder="Email" id="email" name="email" autocomplete="off" > <br>
<input type="password" placeholder="Password" id="pwd" name="pwd" autocomplete="off"><br>
<u><a href="#"><p>Forgot your Password??</p></a></u>
<div class="handles">
<a href="#" target="_blank"><i class="bi bi-facebook" style="font-size: 25px; color: #4285F4; padding: 10px 10px 0px 120px;"></i></a>
<a href="#" target="_blank"><i class="bi bi-linkedin" style="font-size: 25px; color: #1751e5;padding: 10px 10px 0px 10px;"></i></a>
<a href="#" target="_blank"><i class="bi bi-instagram" style="font-size: 25px; color: #db2479; padding: 10px 10px 0px 10px;"></i></a>
<a href="#" target="_blank"><i class="bi bi-github" style="font-size: 25px; color: #050505; padding: 10px 10px 0px 10px;"></i> </a>
</div>
<br>
<button type="button" onclick="validateForm()">LOGIN</button>
</form>
</div>
<!-- LEFT COLUMN ENDS -->
<!-- RIGHT COLUMN -->
<div class="right">
<h2>Dear, Customer!!</h2>
<u><P>Don't have an account??</P></u>
<a href="./signup.html"><button>SIGN UP</button></a>
</div>
<!-- RIGHT COLUMN ENDS -->
</div>
</body>
</html>