forked from 4GeeksAcademy/login-form-example-ft-26
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (51 loc) · 2.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!--
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
-->
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="login-form">
<img src="https://picsum.photos/id/666/350/500" alt="" />
<main>
<h3>Login into account</h3>
<div class="box-input">
<i class="fa-regular fa-envelope"></i>
<input type="text" placeholder="Email Address" />
</div>
<div class="box-input">
<i class="fa-solid fa-key"></i>
<input type="password" placeholder="Password" />
</div>
<label class="remember">
<input type="checkbox">
Remember me
</label>
<button class="login-button">Login</button>
<a href="recover-password.html" class="forgot">Forget password?</a>
<p class="social-text">or login with</p>
<div class="social-login">
<a href="https://facebook.com" class="btn-facebook">
<!-- <i class="fa-brands fa-facebook"></i> -->
Facebook
</a>
<a href="https://google.com" class="btn-google">
<!-- <i class="fa-brands fa-google"></i> -->
Google
</a>
<a href="https://twitter.com" class="btn-twitter">
<!-- <i class="fa-brands fa-twitter"></i> -->
Twitter
</a>
</div>
<hr />
<p class="register-text">Don't have an account? <a href="register.html">Register here</a></p>
</main>
</div>
</body>
</html>