-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (73 loc) · 3.52 KB
/
index.html
File metadata and controls
76 lines (73 loc) · 3.52 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
<!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="https://use.fontawesome.com/releases/v5.15.4/css/all.css"
integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous" />
<link rel="stylesheet" href="./styes.css" />
<title>Login & Signup</title>
</head>
<body>
<div class="container" id="container">
<div class="form-container register-container">
<form action="https://strong-frangollo-094f02.netlify.app/" onsubmit="return validateForm()">
<h1>Create Account</h1>
<input type="text" placeholder="Full Name" required>
<input type="email" placeholder="Enter your email address" required>
<input type="password" placeholder="Create Password" required>
<button type="submit">Sign Up</button>
<span>or use your social account</span>
<div class="social-container">
<a href="#" class="social"><i class="fab fa-facebook"></i></a>
<a href="#" class="social"><i class="fab fa-google"></i></a>
<a href="#" class="social"><i class="fab fa-github"></i></a>
</div>
</form>
</div>
<div class="form-container login-container">
<form action="https://strong-frangollo-094f02.netlify.app/" onsubmit="return validateForm()">
<h1>Welcome Back</h1>
<input type="email" placeholder="Enter your email address" required>
<input type="password" placeholder="Your Password" required>
<div class="content">
<div class="checkbox">
<input type="checkbox" name="checkbox" id="checkbox">
<label for="checkbox">Keep logged in</label>
</div>
<div class="pass-link">
<a href="#">Forgot your password?</a>
</div>
</div>
<button type="submit">Log In</button>
<span>or use your social account</span>
<div class="social-container">
<a href="#" class="social"><i class="fab fa-facebook"></i></a>
<a href="#" class="social"><i class="fab fa-google"></i></a>
<a href="#" class="social"><i class="fab fa-github"></i></a>
</div>
</form>
</div>
<div class="overlay-container">
<div class="overlay">
<div class="overlay-panel overlay-left">
<h1 class="title">Welcome Back!</h1>
<p>If you already have an account, log in to continue.</p>
<button class="ghost" id="login">Log In
<i class="lni Ini-arrow-left login"></i>
</button>
</div>
<div class="overlay-panel overlay-right">
<h1 class="title">Join Us Today!</h1>
<p>Create an account to start your journey with us.</p>
<button class="ghost" id="register">Sign Up
<i class="lni Ini-arrow-right register"></i>
</button>
</div>
</div>
</div>
</div>
<script src="fun.js"></script>
</body>
</html>