-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
67 lines (67 loc) · 3.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Register | CodeCanvas</title>
<link href="css/signup.css" rel="stylesheet">
<script src="js/signup.js" defer></script>
</head>
<body>
<div>
<div class="login-container">
<div class="login-wrapper">
<div class="login-image">
<img src="assets/Rectangle 4.jpg" alt="Login illustration" />
</div>
<div class="login-form">
<div class="login-content">
<h1 class="login-title" style="text-align: left; margin-top: 8px;">Get Started Now </h1>
<p class="login-description" style="color: white;text-align: left; margin: 6px;">How to i get started lorem ipsum dolor at?</p>
<div class="external-login">
<div class="google-login">
<a href="#" style="color: white;">
<div class="google-login-content">
<img src="assets/googlelogo.png" alt="Google logo" class="google-icon" />
<p class="google-text">Login with <span>Google</span></p>
</div>
</a></div>
<div class="facebook-login">
<a href="facebook_login.html" style="color: white;">
<div class="facebook-login-content">
<img src="assets/fblogo.png" alt="Facebook logo" class="facebook-icon" />
<p class="facebook-text">Login with <span>Facebook</span></p>
</div>
</a>
</div>
</div>
<div class="login-divider" style="color: white;">
<div class="line"></div>
<span class="or-text" style="color: white; ">Or</span>
<div class="line"></div>
</div>
<!-- End of login options -->
<form id="signup-form">
<div class="input-wrapper email-wrapper">
<label for="email" class="input-label">Email Address</label>
<input type="email" id="email" placeholder="Enter your email address" class="visually-hidden" />
</div>
<div class="input-wrapper username-wrapper">
<label for="username" class="input-label">Username</label>
<input type="text" id="username" placeholder="Enter your username" class="visually-hidden" />
</div>
<div class="input-wrapper password-wrapper">
<label for="password" class="input-label">Password</label>
<input type="password" id="password" placeholder="Enter your password" class="visually-hidden" />
</div>
<button type="submit" class="login-button" style="font-size: 18px;">Sign-up Now</button>
<!-- Add the "Already a member? Login" text below the login button -->
<p style="color: white; font-size: 20px;">Already a member? <a href="login.html" style="color: white;">Login</a></p>
</form>
</div>
</div>
</div>
</div>
</div>
</body>
</html>