-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (74 loc) · 3.62 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
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html>
<head>
<title>EzSOCIAL-Sign up</title>
<!-- fonts -->
<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=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,400;1,500&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=Lato:ital,wght@0,100;0,300;0,400;0,700;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,400;1,500&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=Rajdhani:wght@300;400;500&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=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="signup_form.css">
</head>
<body>
<main>
<div class="left">
<div class="top-left"></div>
<div class="top-right"></div>
<div class="bottom-left"></div>
<div class="bottom-right"></div>
<div class="leftCon">
<section>
<h1>Ez sociaL</h1>
<p class="welcome">A very warm <br>welcome to you</p>
<p class="joined"><span class="peopleCount">5</span> people have joined our network</p>
<p class="alreadyAccount">Already have an account?</p>
<a href="#" class="signin">Sign in</a>
</section>
</div>
</div>
<div class="right">
<div class="rightCon">
<div class="signupForm">
<form action="submit">
<h2>Sign up</h2>
<label for="email" class="email_pass">Email address</label>
<input type="email" id="email" placeholder="Enter your email" class="btn_input email" />
<label for="password" class="email_pass">Set password</label>
<input type="password" id="password" placeholder="Enter password" class="btn_input" />
<div>
<input type="checkbox" id="showPassword" />
<label for="showPassword" class="label_checkbox">Show password</label>
</div>
<button type="submit" class="btn_input">Sign up -></button>
<div class="partion_line">
<div class="line1"></div>
<div>or</div>
<div class="line2"></div>
</div>
<div class="signup_options">
<button class="btn_input">
<img src="./images/google.png" alt="logo" srcset="">
Continue with Google</button>
</div>
</form>
</div>
</div>
</div>
</main>
</body>
</html>