-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
134 lines (81 loc) · 4.72 KB
/
index.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BinTech</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous"><link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous"><link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script src="Assets/JS/index.js"></script>
<link rel="stylesheet" href="Assets/CSS/common.css">
<link rel="stylesheet" href="Assets/CSS/index.css">
</head>
<body onload="checkLogin();">
<nav class="headerNav mb-5">
<div class="innerHeader">
<div class="headerLogo">
<p>BinTech</p>
</div>
<div class="navItems">
<a href="#" class="navLinks">Home</a>
<a href="#" class="navLinks">About</a>
<a href="#" class="navLinks">Docs</a>
<a href="#" class="navLinks">Contact</a>
</div>
</div>
</nav>
<div class="container mb-5">
<div class="row g-5">
<div class="col-md-3"></div>
<div class="col-md-6">
<div class="loginForm">
<div class="loginFormHeader">
<p>BinTech Login</p>
</div>
<form class="p-3" enctype="multipart/form-data">
<div class="mb-3">
<label for="loginAuthEmail" class="form-label">Email Address</label>
<input type="email" class="form-control" id="loginAuthEmail" name="loginAuthEmail">
<div id="loginEmailErr" class="form-text"></div>
</div>
<div class="mb-3">
<label for="loginAuthPass" class="form-label">Password</label>
<input type="password" class="form-control" id="loginAuthPass" name="loginAuthPass">
<div id="loginPassErr" class="form-text"></div>
</div>
<input style="width: 100%;" id="loginAuthBtn" type="button" class="btn btn-primary" value="Login">
</form>
<div class="row p-3">
<div class="col-6">
<a href="#" data-bs-toggle="modal" data-bs-target="#frgtPass" >Forgot Password ?</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- MODALS -->
<div class="modal fade" id="frgtPass" tabindex="-1" aria-labelledby="frgtPassLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="frgtPassLabel">Forgot Password</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<div class="mb-3">
<label for="passFrgtEmail" class="form-label">Email Address</label>
<input type="email" class="form-control" id="passFrgtEmail" name="loginAuthEmail">
<div id="FrgtEmailErr" class="form-text"></div>
</div>
</div>
<div class="modal-footer">
<button type="button" id="passFrgtBtn" class="col-12 btn btn-primary">Reset Password</button>
</div>
</div>
</div>
</div>
<!-- MODAL END -->
</body>
</html>