-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (37 loc) · 1.76 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
<!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/stye.css">
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<script src="https://kit.fontawesome.com/c0e27fec68.js" crossorigin="anonymous"></script>
<title>Login to RedX</title>
</head>
<body>
<div class='login-outer-container'>
<div class='login-container'>
<div class='login-area'>
<h3>LOGIN TO REDX</h3>
<form class='login-items'>
<label htmlFor="username">Email</label>
<input type="email" class='login' name="email" placeholder='[email protected]' required />
<label htmlFor="password">Password</label>
<input type="password" class='login' name="password" placeholder="Your Password" required />
<input type="submit" class='login-btn' value="Login" />
</form>
<p class='p'>New to RedX? <a class='a' href="register.html">Create an Account</a></p>
<p class='p'>Forgot password? <a href="#" class='a'>Reset Password</a></p>
<div class='social-login-container'>
<p class='prompt'>or</p>
<div class='social-login'>
<button class='google-signin'><i class="fa-brands fa-google"></i> Login with Google</button>
<button class='github-signin'><i class="fa-brands fa-github"></i>Login with Github</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>