-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrefund.html
More file actions
289 lines (253 loc) · 11.4 KB
/
refund.html
File metadata and controls
289 lines (253 loc) · 11.4 KB
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EasyShop.com - Refund Policy</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(to bottom, #f8f8f8, #e0e0e0);
color: #333;
overflow-x: hidden;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 40px;
background-color: rgba(255, 255, 255, 0.95);
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
border-radius: 20px;
text-align: center;
}
h1, h2, h3 {
color: #333;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.policy-header {
background-color: #ffcc00;
padding: 20px;
text-align: center;
border-bottom: 2px solid #000;
border-radius: 20px 20px 0 0;
}
.policy-description {
margin-top: 20px;
margin-bottom: 30px;
color: #555;
line-height: 1.6;
}
.policy-content {
background-color: rgba(255, 255, 255, 0.8);
border: 1px solid #ddd;
border-radius: 20px;
overflow: hidden;
margin-bottom: 20px;
}
.policy-topic, .policy-text {
padding: 20px;
}
.policy-topic {
background-color: #ffcc00;
color: #333;
font-weight: bold;
border-radius: 20px 20px 0 0;
}
.policy-text {
background-color: rgba(255, 255, 255, 0.95);
color: #555;
line-height: 1.6;
}
.contact-info {
margin-top: 40px;
color: #333;
line-height: 1.6;
}
.contact-emails {
display: flex;
justify-content: center;
margin-top: 20px;
}
.email {
margin: 10px;
}
.contact-button {
background-color: #ffcc00;
color: #333;
padding: 15px 30px;
border: none;
border-radius: 20px;
cursor: pointer;
transition: background-color 0.3s;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.contact-button:hover {
background-color: #ffa500;
color: #fff;
}
.hidden {
display: none;
}
.social-icons {
margin-top: 40px;
}
.social-icons a {
color: #333;
text-decoration: none;
font-size: 24px;
margin: 0 15px;
transition: color 0.3s;
}
.social-icons a:hover {
color: #ffcc00;
}
.language-selector {
margin-top: 40px;
}
.language-selector h2 {
font-weight: bold;
}
#languageSelect {
padding: 10px;
border-radius: 10px;
border: 1px solid #ccc;
font-size: 16px;
cursor: pointer;
transition: border-color 0.3s;
}
#languageSelect:hover {
border-color: #ffcc00;
}
</style>
<script>
function changeLanguage() {
var language = document.getElementById("languageSelect").value;
var content = {};
if (language === "en") {
content = {
header: "Refund Policy",
description: "Transparent guidelines to ensure your satisfaction",
topics: [
"International Transactions",
"Damaged Products",
"Non-Reception of Products"
],
texts: [
"In the event of an international transaction, any refunded money will be adjusted directly. Unfortunately, international transactions are non-refundable.",
"If a product arrives damaged due to our negligence, we will promptly refund your money. The damaged product, however, is yours to keep.",
"If you fail to receive a product, we commit to returning your money within a 24-hour period. Your satisfaction is our top priority, and we aim to resolve any issues swiftly."
],
contactHeader: "Contact Information",
contactDescription: "If you have any further questions or concerns regarding our refund policy, feel free to reach out to us. We are here to assist you!",
customerSupport: "Customer Support",
generalInquiries: "General Inquiries",
supportEmail: "support@easyshop.com",
infoEmail: "info@easyshop.com",
connectHeader: "Connect with Us"
};
} else if (language === "es") {
content = {
header: "Política de Reembolso",
description: "Directrices transparentes para garantizar su satisfacción",
topics: [
"Transacciones Internacionales",
"Productos Dañados",
"No Recepción de Productos"
],
texts: [
"En caso de una transacción internacional, cualquier dinero reembolsado se ajustará directamente. Desafortunadamente, las transacciones internacionales no son reembolsables.",
"Si un producto llega dañado debido a nuestra negligencia, le reembolsaremos su dinero de inmediato. Sin embargo, el producto dañado es suyo para quedarse.",
"Si no recibe un producto, nos comprometemos a devolverle su dinero dentro de un período de 24 horas. Su satisfacción es nuestra principal prioridad, y nuestro objetivo es resolver cualquier problema rápidamente."
],
contactHeader: "Información de Contacto",
contactDescription: "Si tiene más preguntas o inquietudes sobre nuestra política de reembolso, no dude en comunicarse con nosotros. ¡Estamos aquí para ayudarlo!",
customerSupport: "Soporte al Cliente",
generalInquiries: "Consultas Generales",
supportEmail: "soporte@easyshop.com",
infoEmail: "informacion@easyshop.com",
connectHeader: "Conéctese con Nosotros"
};
}
// Update content
document.getElementById("policyHeader").innerText = content.header;
document.getElementById("policyDescription").innerText = content.description;
document.getElementById("contactHeader").innerText = content.contactHeader;
document.getElementById("contactDescription").innerText = content.contactDescription;
document.getElementById("customerSupport").innerText = content.customerSupport;
document.getElementById("generalInquiries").innerText = content.generalInquiries;
document.getElementById("supportEmail").innerText = content.supportEmail;
document.getElementById("infoEmail").innerText = content.infoEmail;
document.getElementById("connectHeader").innerText = content.connectHeader;
// Update policy topics and texts
var topics = document.getElementsByClassName("policy-topic");
var texts = document.getElementsByClassName("policy-text");
for (var i = 0; i < topics.length; i++) {
topics[i].innerText = content.topics[i];
texts[i].innerText = content.texts[i];
}
}
</script>
</head>
<body>
<div class="container">
<div class="policy-header">
<h1 id="policyHeader">Refund Policy</h1>
<p id="policyDescription">Transparent guidelines to ensure your satisfaction</p>
</div>
<div class="policy-description">
<p>In the event of an international transaction, any refunded money will be adjusted directly. Unfortunately, international transactions are non-refundable.</p>
<p>If a product arrives damaged due to our negligence, we will promptly refund your money. The damaged product, however, is yours to keep.</p>
<p>If you fail to receive a product, we commit to returning your money within a 24-hour period. Your satisfaction is our top priority, and we aim to resolve any issues swiftly.</p>
</div>
<div class="policy-content">
<!-- Refund Policy Items -->
<div class="policy-topic">1. <span id="topic1">International Transactions</span></div>
<div class="policy-text">
<p id="text1">In the event of an international transaction, any refunded money will be adjusted directly. Unfortunately, international transactions are non-refundable.</p>
</div>
<div class="policy-topic">2. <span id="topic2">Damaged Products</span></div>
<div class="policy-text">
<p id="text2">If a product arrives damaged due to our negligence, we will promptly refund your money. The damaged product, however, is yours to keep.</p>
</div>
<div class="policy-topic">3. <span id="topic3">Non-Reception of Products</span></div>
<div class="policy-text">
<p id="text3">If you fail to receive a product, we commit to returning your money within a 24-hour period. Your satisfaction is our top priority, and we aim to resolve any issues swiftly.</p>
</div>
</div>
<div class="contact-info">
<h2 id="contactHeader">Contact Information</h2>
<p id="contactDescription">If you have any further questions or concerns regarding our refund policy, feel free to reach out to us. We are here to assist you!</p>
<button class="contact-button" onclick="toggleContactInfo()">Contact Us</button>
<div id="contactInfo" class="hidden">
<div class="contact-emails">
<div class="email">
<h3 id="customerSupport">Customer Support</h3>
<p>Email: <span id="supportEmail">support@easyshop.com</span></p>
</div>
<div class="email">
<h3 id="generalInquiries">General Inquiries</h3>
<p>Email: <span id="infoEmail">info@easyshop.com</span></p>
</div>
</div>
</div>
</div>
<div class="social-icons">
<h2 id="connectHeader">Connect with Us</h2>
<a href="#" class="fab fa-facebook-f"></a>
<a href="#" class="fab fa-twitter"></a>
<a href="#" class="fab fa-instagram"></a>
<a href="#" class="fab fa-linkedin-in"></a>
</div>
<div class="language-selector">
<h2>Language Selector</h2>
<select id="languageSelect" onchange="changeLanguage()">
<option value="en">English</option>
<option value="es">Spanish</option>
</select>
</div>
</div>
</body>
</html>