-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
103 lines (90 loc) · 4.07 KB
/
Copy pathindex.php
File metadata and controls
103 lines (90 loc) · 4.07 KB
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
<!DOCTYPE html>
<html lang="en" class="h-100">
<head>
<?php include('includes/head.php'); ?>
<title>FinHive | Sign In</title>
<style type="text/css">
body {
min-height: 100%;
/* overflow-y: hidden; */
}
/* Hide the scrollbar by default */
.scroll-container {
scrollbar-width: none;
/* For Firefox */
transition: scrollbar-width 0.7s ease-in-out, width 0.7s ease-in-out;
/* Add transition */
}
.scroll-container::-webkit-scrollbar {
width: 0px;
/* For Chrome, Safari, and Edge */
transition: width 0.7s ease-in-out;
/* Add transition */
}
/* Show scrollbar on hover */
.scroll-container:hover {
scrollbar-width: thin;
/* For Firefox */
}
.scroll-container:hover::-webkit-scrollbar {
width: 4px;
/* Adjust width as needed */
}
/* Optional: Customize scrollbar appearance */
.scroll-container:hover::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 0, 0.158);
/* Change color as needed */
border-radius: 20px;
}
</style>
</head>
<body class="vh-100">
<div class="authincation h-100" style="background: url('./images/landing.jpg') no-repeat; background-size: cover; background-position: center;">
<div class="container h-100">
<div class="row justify-content-center h-100 align-items-center">
<div class="col-md-6">
<div class="authincation-content">
<div class="row no-gutters">
<div class="col-xl-12">
<div class="auth-form">
<div class="text-center mb-3">
<img src="images/finhive-logo.png" width="150" alt="">
</div>
<h4 class="text-center mb-4">Sign into your account</h4>
<form action="#" id="login-form">
<div class="form-group">
<label class="mb-1"><strong>Email</strong></label>
<input type="email" class="form-control required" id="email" name="email">
</div>
<div class="form-group">
<label class="mb-1"><strong>Password</strong></label>
<input type="password" class="form-control required" id="password" name="password">
</div>
<div class="row d-flex justify-content-between mt-4 mb-2">
<div class="form-group">
<a href="forgot-password">Forgot Password?</a>
</div>
</div>
<div class="text-center">
<button type="submit" class="btn btn-primary btn-block">Sign Me In</button>
</div>
</form>
<div class="new-account mt-3">
<p>Don't have an account? <a class="text-primary" href="sign-up">Sign up</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--**********************************
Scripts
***********************************-->
<!-- Required vendors -->
<?php include('includes/scripts.php'); ?>
<script src="js/pages/auth.js"></script>
</body>
</html>