-
Notifications
You must be signed in to change notification settings - Fork 1
/
sign.html
53 lines (49 loc) · 1.99 KB
/
sign.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
<!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 href="https://fonts.googleapis.com/css2?family=Raleway:wght@200&display=swap" rel="stylesheet">
<link href="sign.css" rel="stylesheet">
<title>Sign in/up</title>
</head>
<body>
<div class="container" id="container">
<div class="form-container sign-up-container">
<form>
<h1>Create Account</h1>
<input type="text" placeholder="Name" />
<input type="email" placeholder="Email" />
<input type="password" placeholder="Password" />
<input type="number" placeholder="Phone Number" />
<a href="profile_page1.html" class="btn">Sign up</a>
</form>
</div>
<div class="form-container sign-in-container">
<form>
<h1>Sign in</h1>
<input type="email" placeholder="Email" />
<input type="password" placeholder="Password" />
<a href="#">Forgot your password?</a>
<a href="profile_page1.html" class="btn">Sign IN</a>
</form>
</div>
<div class="overlay-container">
<div class="overlay">
<div class="overlay-panel overlay-left">
<h1>Welcome Back!</h1>
<p>TTo keep connected with us, please login by entering your details</p>
<button class="ghost" id="signIn">Sign In</button>
</div>
<div class="overlay-panel overlay-right">
<h1>Hello, Friend!</h1>
<p>Enter your details and start exploring with us.</p>
<button class="ghost" id="signUp">Sign Up</button>
</div>
</div>
</div>
</div>
<script src="sign.js"></script>
</body>
</html>