-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaccount.html
203 lines (203 loc) · 6.22 KB
/
account.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<!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" />
<title>Account</title>
<script
src="https://kit.fontawesome.com/60de47e3f5.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="./styles/account.css" />
<link rel="stylesheet" href="./styles/navbar_footer.css">
</head>
<body>
<div id="header" class=".head">
<div id="country">
<h6>Ships to :</h6>
</div>
<div class="india">
<img
src="https://ak1.ostkcdn.com/img/mxc/intFlag_IN.gif"
alt="Indian_flag-logo"
/>
</div>
<div>
<h5>INDIA</h5>
</div>
</div>
<div id="navbar">
<div class="company-logo">
<img
onclick="home()"
src="https://lh3.googleusercontent.com/lCRlZYOdeHIbclzCoJBiJmLyKW1njA2SqQd7GMKiKSE8C_LzQ-cPvageX_AsYBTCvmYI9A=s170"
alt="OverStock Logo"
/>
</div>
<div class="search-logo">
<input type="text" placeholder="Search" id="input" />
<button id="search_logo">
<i class="fa-solid fa-magnifying-glass"></i>
</button>
</div>
<div id="side_nav">
<div class="account-logo">
<i class="bi bi-person"></i>
<img src="https://cdn.iconscout.com/icon/free/png-64/user-3603830-3005622.png" alt="account-logo">
<p><a href="./account.html">Account</a></p>
</div>
<div class="heart-logo">
<i class="bi bi-heart"></i>
<img src="https://cdn.iconscout.com/icon/free/png-64/heart-1121-433832.png" alt="heart-logo">
<p>Lists</p>
</div>
<div class="cart-logo">
<i class="bi bi-cart"></i>
<img src="https://cdn.iconscout.com/icon/free/png-64/cart-389-458456.png" alt="cart-logo">
<p><a href="./cart.html">Cart</a> </p>
</div>
<button onclick="checkout()" id="btn"><i class="bi bi-file-lock-fill"></i>Checkout</button>
</div>
</div>
<div id="content">
<div>
<a class="a" href="furniture.html">Furniture</a>
</div>
<div>
<a class="a" href="rugs.html">Rugs</a>
</div>
<div>
<a href="decor.html">Decor</a>
</div>
<div>
<a href="bedding.html">Bedding</a>
</div>
<div>
<a href="home_improvement.html">Home Improvement</a>
</div>
<div>
<a href="kitchen.html">Kitchen</a>
</div>
<div>
<a href="outdoor.html">Outdoor</a>
</div>
<div>
<a href="lighting.html">Lighting</a>
</div>
<div>
<a href="kids&baby.html">Kids & Baby</a>
</div>
<div>
<a href="more.html">More</a>
</div>
<div>
<p>|</p>
</div>
<div>
<a href="Ideas.html">Ideas</a>
</div>
<div class="sales">
<a href="">Sales & Deals</a>
</div>
</div>
<div id="account_page">
<div>
<div id="create_account">
<h2>Create Account</h2>
<div>
<form id="sign_up">
<div>
<h4>Email Address*</h4>
<input class="ai"
type="email"
placeholder="Email"
id="su_email"
required
/>
</div>
<div>
<div>
<h4>Create Password*</h4>
<input class="ai"
type="password"
placeholder="Password"
id="su_pw"
required
/>
</div>
<div>
<h4>Confirm Password*</h4>
<input class="ai"
type="password"
placeholder="Confirm Password"
id="confirm_pw"
required
/>
</div>
</div>
<div>
<input type="checkbox" />
<p class="ap">
Sign up today for exclusive offers from Overstock.com
delivered right to your inbox**
</p>
</div>
<input class="ai" type="submit" value="Create Account" />
</form>
<hr />
<div id="guest_opt">
<button id="guest">Continue as Guest</button>
<p class="ap">
By creating an account or continuing as a Guest, you agree to
our <a href="#">Terms & Conditions</a> and
<a href="#">Privacy Policy</a>.
</p>
<p class="ap">
<a href="#">Terms & Conditions</a> |
<a href="#">Privacy Policy</a>.
</p>
<p class="ap">**You can unsubscribe at any time</p>
</div>
</div>
</div>
<hr />
<div id="sign_in_part">
<h2>Sign In</h2>
<form id="sign_in">
<h4>Email Address*</h4>
<input class="ai" type="email" placeholder="Email" id="si_email" />
<h4>Password*</h4>
<input class="ai" type="password" placeholder="Password" id="si_pw" />
<input class="ai" type="submit" value="Sign In" />
</form>
<a href="#">Forgot your password?</a>
</div>
</div>
<ul id="bottom">
<li><a href="#">Return Policy</a></li>
<li><a href="#">Contact Customer Care</a></li>
<li><a href="#">FAQ</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Site User Terms & Conditions*</a></li>
<li>© 2022 Overstock.com All Rights Reserved</li>
<li>We self-certify compliance with:</li>
</ul>
<div>
<img
src="https://ak1.ostkcdn.com/img/mxc/20200630-intl-privacy_shield.png"
alt="privacy shield logo"
/>
</div>
</div>
</body>
</html>
<script src="./scripts/account.js"></script>
<script>
let home = ()=>{
window.location.href = "Home.html"
}
let checkout = ()=>{
window.location.href = "checkout.html"
}
</script>