-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
42 lines (35 loc) · 1.4 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
<!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 rel="stylesheet" href="/signup.css">
<title>Signin Or Signup</title>
</head>
<body>
<div id="nav">
<a href="/index.html">
< Back</a>
</div>
<div id="container">
<img src="/media/loginpage.webp" alt="">
<div>
<h2>sign in or create</h2>
<input type="email" id="email" placeholder="* Email">
<button id="continue">Continue</button>
<h1>OR</h1>
<button> <span><img src="/media/mac-os.png" alt=""></span> Continue with Apple</button>
<button> <span><img src="/media/google-logo (1).png" alt=""></span> Continue with Google</button>
<button> <span><img src="/media/facebook-new.png" alt=""></span> Continue with Facebook</button>
<p>By continuing you agree to enroll in and to the Terms of our Welcome Rewards Program. For information on
our privacy practices, please visit our Privacy Policy. California residents: view our Notice of
Financial Incentive here</p>
</div>
</div>
<footer>
<div>©2023 furniture & Beyond Inc. and its subsidiaries.</div>
</footer>
<script src="/signup.js"></script>
</body>
</html>