-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (81 loc) · 3.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta content="FrogBID - Web App" name="description">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<!-- The above 4 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta content="#0134d4" name="theme-color">
<meta content="yes" name="apple-mobile-web-app-capable">
<meta content="black" name="apple-mobile-web-app-status-bar-style">
<!-- Title -->
<title>FrogBID - Web App</title>
<!-- Favicon -->
<link href="img/core-img/favicon.ico" rel="icon">
<link href="img/icons/icon-96x96.png" rel="apple-touch-icon">
<link href="img/icons/icon-152x152.png" rel="apple-touch-icon" sizes="152x152">
<link href="img/icons/icon-167x167.png" rel="apple-touch-icon" sizes="167x167">
<link href="img/icons/icon-180x180.png" rel="apple-touch-icon" sizes="180x180">
<!-- Style CSS -->
<link href="style.css" rel="stylesheet">
<!-- Web App Manifest -->
<link href="manifest.json" rel="manifest">
</head>
<body>
<!-- Preloader -->
<div id="preloader">
<div class="spinner-grow text-primary" role="status">
<span class="visually-hidden">Loading...</span>
</div>
</div>
<!-- Internet Connection Status -->
<div class="internet-connection-status" id="internetStatus"></div>
<!-- Login Wrapper Area -->
<div class="login-wrapper d-flex align-items-center justify-content-center">
<div class="custom-container">
<div class="text-center px-4">
<img alt="" class="login-intro-img" src="img/bg-img/36.png">
</div>
<!-- Register Form -->
<div class="register-form mt-4">
<h6 class="mb-3 text-center">Log in to continue to the FrogBID App</h6>
<form action="" method="post">
<div class="form-group">
<input class="form-control" id="username" placeholder="Phone Number *" type="text">
</div>
<div class="form-group position-relative">
<input class="form-control" id="psw-input" placeholder="Enter Password *" type="password">
<div class="position-absolute" id="password-visibility">
<i class="bi bi-eye"></i>
<i class="bi bi-eye-slash"></i>
</div>
</div>
<button class="btn btn-primary w-100" type="submit">Sign In</button>
</form>
</div>
<!-- Login Meta -->
<div class="login-meta-data text-center">
<a class="stretched-link forgot-password d-block mt-3 mb-1" href="forget-password.html">Forgot
Password?</a>
<p class="mb-0">Didn't have an account? <a class="stretched-link" href="register.html">Register Now</a></p>
</div>
</div>
</div>
<!-- All JavaScript Files -->
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/slideToggle.min.js"></script>
<script src="js/internet-status.js"></script>
<script src="js/tiny-slider.js"></script>
<script src="js/venobox.min.js"></script>
<script src="js/countdown.js"></script>
<script src="js/rangeslider.min.js"></script>
<script src="js/vanilla-dataTables.min.js"></script>
<script src="js/index.js"></script>
<script src="js/imagesloaded.pkgd.min.js"></script>
<script src="js/isotope.pkgd.min.js"></script>
<script src="js/dark-rtl.js"></script>
<script src="js/active.js"></script>
<script src="js/pwa.js"></script>
</body>
</html>