-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
166 lines (139 loc) · 5.53 KB
/
profile.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1, width=device-width" />
<link rel="stylesheet" href="./global.css" />
<link rel="stylesheet" href="./profile.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Inter:wght@200;400;500;600;700&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Dangrek:wght@400&display=swap"
/>
</head>
<body>
<div class="profile">
<div class="profile-child"></div>
<img class="profile-item" alt="" src="./public/rectangle-79@2x.png" />
<div class="profile-inner"></div>
<b class="profile1">PROFILE</b>
<div class="profile-child1"></div>
<div class="profile-child2"></div>
<div class="profile-child3"></div>
<div class="na">Na</div>
<div class="profile-child4"></div>
<input class="rectangle-input" type="text" />
<b class="account-details">Account Details</b>
<input class="name" type="text" placeholder="Name" />
<input class="mobile-number" type="number" placeholder="Mobile Number" />
<input class="email-id" type="text" placeholder="Email" id=" " />
<input class="address2" type="text" placeholder="Address" />
<img class="vector-icon53" alt="" src="./public/vector211.svg" />
<img class="vector-icon54" alt="" src="./public/vector101.svg" />
<img class="vector-icon55" alt="" src="./public/vector151.svg" />
<img class="vector-icon56" alt="" src="./public/vector22.svg" />
<img class="vector-icon57" alt="" src="./public/vector23.svg" />
<img class="vector-icon58" alt="" src="./public/vector23.svg" />
<img class="vector-icon59" alt="" src="./public/vector23.svg" />
<img class="vector-icon60" alt="" src="./public/vector23.svg" />
<div class="profile-child5" id="rectangle6"></div>
<button class="coupons2">Coupons</button>
<img class="vector-icon61" alt="" src="./public/vector24.svg" />
<div class="notifications">Notifications</div>
<div class="profile-child6"></div>
<div class="profile-child7" id="rectangle8"></div>
<div class="profile-child8"></div>
<div class="terms-and-condition-container" id="termsAndCondition">
<p class="terms-and">Terms and</p>
<p class="terms-and">Condition</p>
</div>
<div class="profile-child9"></div>
<button class="rectangle-button"></button>
<button class="log-out" id="lOGOUT">LOG OUT</button>
<div class="privacy-policy3" id="privacyPolicyText">Privacy Policy</div>
<div class="faqs1">FAQ’s</div>
<img
class="vector-icon62"
alt=""
src="./public/vector27.svg"
id="vector2"
/>
<img class="vector-icon63" alt="" src="./public/vector25.svg" />
<div class="rectangle-parent51">
<div class="group-child202" id="rectangle11"></div>
<button class="orders">Orders</button>
<button class="shopping-bag2">
<img class="group-icon2" alt="" src="./public/group1.svg" />
</button>
</div>
<div class="rectangle-parent52">
<div class="group-child202" id="rectangle12"></div>
<button class="wishlist1">Wishlist</button>
</div>
<div class="profile-inner1">
<div class="group-child204"></div>
</div>
<div class="help-center">Help Center</div>
<img class="wish-list-icon" alt="" src="./public/wish-list@2x.png" />
<img class="address-icon" alt="" src="./public/address@2x.png" />
<img
class="technical-support-icon"
alt=""
src="./public/technical-support@2x.png"
/>
</div>
<script>
var rectangle6 = document.getElementById("rectangle6");
if (rectangle6) {
rectangle6.addEventListener("click", function (e) {
window.location.href = "./coupons.html";
});
}
var rectangle8 = document.getElementById("rectangle8");
if (rectangle8) {
rectangle8.addEventListener("click", function (e) {
window.location.href = "./faqs.html";
});
}
var termsAndCondition = document.getElementById("termsAndCondition");
if (termsAndCondition) {
termsAndCondition.addEventListener("click", function (e) {
window.location.href = "./termsnconditions.html";
});
}
var lOGOUT = document.getElementById("lOGOUT");
if (lOGOUT) {
lOGOUT.addEventListener("click", function (e) {
window.location.href = "./login.html";
});
}
var privacyPolicyText = document.getElementById("privacyPolicyText");
if (privacyPolicyText) {
privacyPolicyText.addEventListener("click", function (e) {
window.location.href = "./privacy-policy.html";
});
}
var vector2 = document.getElementById("vector2");
if (vector2) {
vector2.addEventListener("click", function (e) {
window.location.href = "./home.html";
});
}
var rectangle11 = document.getElementById("rectangle11");
if (rectangle11) {
rectangle11.addEventListener("click", function (e) {
window.location.href = "./my-orders.html";
});
}
var rectangle12 = document.getElementById("rectangle12");
if (rectangle12) {
rectangle12.addEventListener("click", function (e) {
window.location.href = "./whislist.html";
});
}
</script>
</body>
</html>