-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpassword.html
46 lines (40 loc) · 1.37 KB
/
password.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
<!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="/password.css">
<title>Signin Or Signup</title>
</head>
<body>
<div id="nav">
<a href="/signup.html">
< Back</a>
</div>
<div id="container">
<img src="/media/loginpage.webp" alt="">
<div>
<h2>sign in</h2>
<div id="midbox">
<div>
<h3><b>Hello again!</b></h3>
</div>
<div>
<p id="email"></p>
</div>
<div> <a href="/signup.html"><b>change Email</b></a></div>
</div>
<input type="password" name="" id="pass" placeholder="* Password">
<button id="continue">Sign in</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="/password.js"></script>
</body>
</html>