-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (39 loc) · 1.72 KB
/
index.html
File metadata and controls
45 lines (39 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Log in if YOU CAN !</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="login-by-suraj.css">
<script defer src="login-by-suraj.js"></script>
</head>
<body>
<main>
<div class="left">
<h1>Hello, Friend!</h1>
<p>Register with your personal details get access to the premium features.</p>
<button id="signup">Sign up</button>
</div>
<div class="right">
<form action="">
<h1>Log in</h1>
<div class="logo">
<i class="fa-brands fa-lg fa-google-plus-g"></i>
<i class="fa-brands fa-lg fa-github"></i>
<i class="fa-brands fa-lg fa-linkedin"></i>
<i class="fa-brands fa-lg fa-facebook"></i>
</div>
<p>or use your email and password</p>
<input id="name" type="text" placeholder="Enter Full Name" required autofocus>
<input type="email" placeholder="Enter Email" required>
<input type="password" placeholder="Enter Password" required>
<p class="forgot-pass"><a href="#">Forgotten password?</a></p>
<button id="login">Log in</button>
</form>
</div>
</main>
</body>
</html>