-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignupform.html
More file actions
62 lines (59 loc) · 2.26 KB
/
Copy pathsignupform.html
File metadata and controls
62 lines (59 loc) · 2.26 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
<!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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="signupform.css">
</head>
<body>
<main>
<div class="infoside">
<p><span>Come and join us!</span><br>
We are so excited to have you here. If you <br>
haven't already, create an account to get <br>
access to exclusive offers, rewards, and <br>
discounts.
</p>
<button>Already have and account? Signin.</button>
</div>
<form action="">
<h1>Signup</h1>
<div class="input">
<div class="inputcontainer">
<i class="fas fa-user"></i>
<input type="text" placeholder="ByteWebster">
</div>
<div class="inputcontainer">
<i class="fas fa-envelope"></i>
<input type="email" placeholder="support@bytewebster.com">
</div>
<div class="inputcontainer">
<i class="fas fa-lock"></i>
<input type="password" placeholder="........">
</div>
<div class="inputcontainer">
<i class="fas fa-lock"></i>
<input type="password" placeholder="........">
</div>
</div>
<button>Signup</button>
<p>or signup with</p>
<div class="icons">
<div class="facebook">
<i class="fa-brands fa-facebook-f"></i>
</div>
<div class="google">
<i class="fa-brands fa-google-plus-g"></i>
</div>
<div class="linkedin">
<i class="fa-brands fa-linkedin-in"></i>
</div>
</div>
</form>
</main>
</body>
</html>