-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (69 loc) · 3.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login - imsayanpaul</title>
<link rel="icon" type="image" href="src/icon.png">
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Russo+One&display=swap" rel="stylesheet">
<body>
<nav>
<div class="left">imsayanpaul</div>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/">Portfolio</a></li>
<li><a href="/">Courses</a></li>
<li><a href="/">About us</a></li>
<li><a href="/">Contact us</a></li>
</ul>
<div class="right right-border">LOG IN</div>
</nav>
<main>
<!-- Please log in using your personal information to stay connected with us. -->
<div class="container">
<idv class="outerbox">
<div class="sideimg">
<div class="welcome">Welcome Back</div>
<div class="text">Please log in using your personal information to stay connected with us.</div>
</div>
<div class="rightlogin">
<div class="right-content">
<h3>LOGIN</h3>
<span class="close-con">
<img src="src/icons8-close.svg" alt="" class="close">
</span>
<form action="https://youtu.be/dQw4w9WgXcQ">
<div class="username">
<label for="username"></label>
<input type="text" id="username" name="username" placeholder="Email" required>
</div>
<div class="password">
<label for="pass"></label>
<input type="password" id="password" name="password" minlength="8" required
placeholder="Password" class="eye">
<img src="src/eye-close.png" alt="eye" id="eyeicon">
</div>
<div class="forgot">Forgot password?</div>
<div class="submit">
<input class="login" type="submit" value="Log in">
</form>
</div>
<div class="account">Don't have an account?</div>
<div class="signup">Signup</div>
</div>
</div>
</div>
</div>
</main>
</body>
</html>