-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
69 lines (67 loc) · 2.43 KB
/
signup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sign Up</title>
<link rel="stylesheet" href="signup.css" />
<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..900;1,100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header>
<div class="navbar">
<div class="logo"><img src="logo.svg" alt="" /></div>
<div class="nav-right">
<ul class="nav-links">
<li><a href="#">About Us</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
<div class="auth-buttons">
<a href="login.html" class="login-btn">Login</a>
<a href="signup.html" class="signup-btn">Sign Up</a>
</div>
</div>
</div>
</header>
<div class="container">
<div class="login-box">
<h1 class="login-title">Sign Up</h1>
<p class="login-subtitle">Create your free e3 account</p>
<div class="button-container">
<button class="google-button">
<img
src="https://www.vectorlogo.zone/logos/google/google-icon.svg"
class="google-icon"
/>
Sign up with Google
</button>
<div class="divider">or continue with</div>
</div>
<div class="form-group">
<label for="fullname">Full Name</label>
<input type="text" id="fullname" placeholder="Full Name" />
</div>
<div class="form-group">
<label for="email">Email address</label>
<input type="email" id="email" placeholder="you@example.com" />
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" id="password" placeholder="Password" />
</div>
<button class="btn-login">Create Account</button>
<p class="new-user">
Already have an account? <a href="#">Login here</a>
</p>
</div>
<div class="icon-placeholder">
<img src="design-thinking.svg" alt="design-thinking" />
</div>
</div>
</body>
</html>