-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwishlist.html
107 lines (103 loc) · 5.38 KB
/
wishlist.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
<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>Profile</title>
<link rel="stylesheet" href="./styles/sidebar.css">
<link rel="stylesheet" href="./styles/profile.css">
<link rel="stylesheet" href="./styles/wishlist.css">
<link rel="stylesheet" href="./styles/navbar.css">
<link rel="stylesheet" href="./styles/footer.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
</head>
<body>
<div id="navbar"></div>
<div id="profile-b">
<div id="option">
<div id="userName">
<img src="https://cdn-icons-png.flaticon.com/512/319/319873.png" alt="">
<h2 id="userN">Prata </h2>
</div>
<div class="options">
<div><img src="https://cdn-icons-png.flaticon.com/512/3301/3301039.png" alt=""></div>
<div><h2>Purchases</h2><p>Track packages, start returns & more</p></div>
</div>
<div class="options" id="wishlist">
<div><img src="https://cdn-icons-png.flaticon.com/512/1077/1077035.png" alt=""></div>
<div><h2>Wish Lists</h2><p>Create, manage & share lists</p></div>
</div>
<div class="options">
<div><img src="https://cdn-icons.flaticon.com/png/512/625/premium/625096.png?token=exp=1658441642~hmac=d182dc79739e11d8ac2e0e6d1e079ab2" alt=""></div>
<div><h2>The Nordy Club Rewards</h2><p>Learn more or join now</p></div>
</div>
<div class="options">
<div><img src="https://cdn-icons.flaticon.com/png/512/2915/premium/2915309.png?token=exp=1658441806~hmac=c05aa99564d59b15b5c675560dd591bb" alt=""></div>
<div><h2>Shipping Addresses</h2><p>Add an address</p></div>
</div>
<div class="options">
<div><img src="https://cdn-icons-png.flaticon.com/512/3922/3922182.png" alt=""></div>
<div><h2>Payment Methods</h2><p>Add a payment method</p></div>
</div>
<h3>Account Setting</h3>
<!-- -->
<div class="options" id="profile">
<div><img src="https://cdn-icons.flaticon.com/png/512/2889/premium/2889676.png?token=exp=1658442201~hmac=7312251cf1ed27778feef7cec3e72c54" alt=""></div>
<div><h2>Password & Personal Info</h2><p>Password, email, mobile & more</p></div>
</div>
<div class="options">
<div><img src="https://cdn-icons.flaticon.com/png/512/542/premium/542638.png?token=exp=1658442301~hmac=cf61cebab83cc2b5d672271f41af7ce2" alt=""></div>
<div><h2>Email & Mail Preferences </h2><p>Hear about sales, events & more</p></div>
</div>
<div class="options">
<div><img src="https://cdn-icons.flaticon.com/png/512/4450/premium/4450638.png?token=exp=1658442414~hmac=58f36dbaa15a372601fc28f43fb6f6a1" alt=""></div>
<div><h2>Your Store</h2><p>Set Your Store</p></div>
</div>
<h3>Profile</h3>
<!-- -->
<div class="options">
<div></div>
<div><h2>Your Brands</h2><p>Save the brands you shop</p></div>
</div>
<div class="options" >
<div><img src="https://paganresearch.io/images/21Buttons.jpg" alt=""></div>
<div><h2>Looks</h2><p>Personalized outfit inspiration</p></div>
</div>
<div class="options">
<div><img src="https://cdn-icons.flaticon.com/png/512/2990/premium/2990159.png?token=exp=1658443318~hmac=5fb12f3fbd5f67353b64f1eebac67842" alt=""></div>
<div><h2>Pay & Manage</h2><p>Nordstrom Card </p></div>
</div>
<div class="options">
<div><img src="https://cdn-icons.flaticon.com/png/512/3326/premium/3326733.png?token=exp=1658443409~hmac=793c4b3c2fae176232bcc00e9d1040ad" alt=""></div>
<div><h2>Customer Service</h2><p>Get help with orders & more</p></div>
</div>
</div>
<div id="opt-body">
<div id="body-op">
<div id="head">
<h4></h4>
</select>
<a href="">Create new list</a>
</div>
<h3>Wish List</h3>
<div id="sort">
<select name="" id="sorting" onchange="sort()">
<option value="null">select by price</option>
<option value="low to high">Low to High price</option>
<option value="High to Low">High to Low price</option>
</select>
</div>
<div id="wishList-Body">
</div>
<div id="w-b-text">
<p>Other people who use this computer will be able to view your Wish List until you sign out.</p>
<p>Thoughts on the new Wish List? <a href="">take our 1-minute survey.</a></p>
</div>
</div>
</div>
</div>
<div id="footer"></div>
</body>
</html>
<script src="./scripts/wishlist.js" type="module"></script>