-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhelp-center.html
More file actions
478 lines (465 loc) · 17.4 KB
/
help-center.html
File metadata and controls
478 lines (465 loc) · 17.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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MediChain | Help Center</title>
<link rel="icon" href="assets/favicon.png" type="image/png">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--primary: #000000;
--primary-dark: #333333;
--secondary: #666666;
--dark: #000000;
--light: #f5f5f5;
--gray: #757575;
}
* {
font-family: 'Poppins', sans-serif;
scroll-behavior: smooth;
}
body {
overflow-x: hidden;
}
.bg-primary-custom {
background-color: var(--primary);
}
.text-primary-custom {
color: var(--primary);
}
.btn-primary-custom {
background-color: var(--primary);
color: white;
border: none;
transition: all 0.3s ease;
}
.btn-primary-custom:hover {
background-color: var(--primary-dark);
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.btn-outline-primary-custom {
border: 2px solid var(--primary);
color: var(--primary);
background: transparent;
transition: all 0.3s ease;
}
.btn-outline-primary-custom:hover {
background-color: var(--primary);
color: white;
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.navbar {
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
padding: 15px 0;
background-color: white;
}
.navbar-brand {
font-weight: 700;
font-size: 1.8rem;
color: var(--primary);
}
.nav-link {
font-weight: 500;
color: var(--dark) !important;
margin: 0 10px;
position: relative;
transition: all 0.3s ease;
}
.nav-link:after {
content: '';
position: absolute;
width: 0;
height: 2px;
background-color: var(--primary);
bottom: 0;
left: 0;
transition: width 0.3s ease;
}
.nav-link:hover:after {
width: 100%;
}
.hero {
background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
padding: 120px 0 100px;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
width: 300px;
height: 300px;
border-radius: 50%;
background-color: rgba(0, 0, 0, 0.05);
top: -100px;
right: -100px;
z-index: 0;
}
.hero::after {
content: '';
position: absolute;
width: 200px;
height: 200px;
border-radius: 50%;
background-color: rgba(0, 0, 0, 0.03);
bottom: -50px;
left: -50px;
z-index: 0;
}
.hero-content {
position: relative;
z-index: 1;
}
.hero-title {
font-weight: 700;
font-size: 3.5rem;
margin-bottom: 20px;
color: var(--dark);
}
.hero-description {
font-size: 1.2rem;
color: var(--gray);
margin-bottom: 30px;
max-width: 80%;
}
.section-title {
font-weight: 700;
font-size: 2.5rem;
margin-bottom: 50px;
color: var(--dark);
position: relative;
padding-bottom: 15px;
}
.section-title::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background-color: var(--primary);
}
/* FAQ Accordion Styles */
.accordion-button {
background-color: white;
color: var(--dark);
font-weight: 500;
transition: all 0.3s ease;
}
.accordion-button:not(.collapsed) {
color: white;
background-color: var(--primary);
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.125);
}
.accordion-item {
border: none;
margin-bottom: 10px;
}
/* Help Center Section */
.help-section {
padding: 80px 0;
}
.help-section p {
color: var(--gray);
line-height: 1.6;
}
/* Footer Styles */
footer {
background-color: var(--dark);
color: white;
padding: 50px 0 20px;
}
.footer-links h5 {
font-weight: 600;
margin-bottom: 20px;
position: relative;
padding-bottom: 10px;
}
.footer-links h5::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 40px;
height: 2px;
background-color: white;
}
.footer-links ul {
list-style: none;
padding-left: 0;
}
.footer-links ul li {
margin-bottom: 10px;
}
.footer-links ul li a {
color: #ddd;
text-decoration: none;
transition: all 0.3s ease;
}
.footer-links ul li a:hover {
color: white;
text-decoration: none;
padding-left: 5px;
}
.social-links a {
display: inline-block;
width: 40px;
height: 40px;
background-color: rgba(255,255,255,0.1);
border-radius: 50%;
color: white;
text-align: center;
line-height: 40px;
margin-right: 10px;
transition: all 0.3s ease;
}
.social-links a:hover {
background-color: white;
color: black;
transform: translateY(-3px);
}
.copyright {
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 20px;
margin-top: 50px;
text-align: center;
color: #aaa;
}
.accordion-button:not(.collapsed)::after {
filter: brightness(0) invert(1);
transform: var(--bs-accordion-btn-icon-transform);
}
</style>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-light fixed-top">
<div class="container">
<a class="navbar-brand" href="index.html">MediChain</a>
<div class="d-flex gap-3">
<button class="btn btn-primary-custom px-4 d-lg-none ms-2" onclick="window.location.href='auth.html'">Login</button>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="index.html#home">Home</a></li>
<li class="nav-item"><a class="nav-link" href="index.html#features">Features</a></li>
<li class="nav-item"><a class="nav-link" href="index.html#how-it-works">How It Works</a></li>
<li class="nav-item"><a class="nav-link" href="index.html#benefits">Benefits</a></li>
<li class="nav-item"><a class="nav-link" href="index.html#team">Team</a></li>
<li class="nav-item ms-3 d-none d-lg-block">
<button class="btn btn-primary-custom px-4" onclick="window.location.href='auth.html'">Login</button>
</li>
</ul>
</div>
</div>
</nav>
<!-- Hero Section for Help Center -->
<section class="hero" id="help-hero">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-12 text-center hero-content d-flex justify-content-center flex-column align-items-center">
<h1 class="hero-title">Help Center</h1>
<p class="hero-description">
Find answers to your questions and access detailed support articles about MediChain.
</p>
</div>
</div>
</div>
</section>
<!-- Help Center Content Section -->
<section class="help-section" id="faq">
<div class="container">
<h2 class="section-title">Frequently Asked Questions</h2>
<!-- FAQ Accordion -->
<div class="accordion" id="faqAccordion">
<!-- FAQ Item 1 -->
<div class="accordion-item">
<h2 class="accordion-header" id="faqHeadingOne">
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#faqCollapseOne" aria-expanded="true" aria-controls="faqCollapseOne">
What is MediChain?
</button>
</h2>
<div id="faqCollapseOne" class="accordion-collapse collapse show" aria-labelledby="faqHeadingOne" data-bs-parent="#faqAccordion">
<div class="accordion-body">
<p>MediChain is a blockchain-powered platform designed to transform the pharmaceutical supply chain. It offers end-to-end visibility, secure drug tracking, real-time monitoring with IoT integration, and robust anti-counterfeit measures.</p>
</div>
</div>
</div>
<!-- FAQ Item 2 -->
<div class="accordion-item">
<h2 class="accordion-header" id="faqHeadingTwo">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faqCollapseTwo" aria-expanded="false" aria-controls="faqCollapseTwo">
How does the blockchain technology improve drug traceability?
</button>
</h2>
<div id="faqCollapseTwo" class="accordion-collapse collapse" aria-labelledby="faqHeadingTwo" data-bs-parent="#faqAccordion">
<div class="accordion-body">
<p>Our blockchain ledger ensures that every transaction, from drug production to delivery, is permanently recorded and cannot be tampered with. This guarantees complete transparency and accountability throughout the supply chain.</p>
</div>
</div>
</div>
<!-- FAQ Item 3 -->
<div class="accordion-item">
<h2 class="accordion-header" id="faqHeadingThree">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faqCollapseThree" aria-expanded="false" aria-controls="faqCollapseThree">
How can I verify the authenticity of a drug on MediChain?
</button>
</h2>
<div id="faqCollapseThree" class="accordion-collapse collapse" aria-labelledby="faqHeadingThree" data-bs-parent="#faqAccordion">
<div class="accordion-body">
<p>You can verify drug authenticity by scanning the QR code on the product packaging. This instantly retrieves the complete history of the drug as recorded on the blockchain, allowing you to confirm its legitimacy.</p>
</div>
</div>
</div>
<!-- FAQ Item 4 -->
<div class="accordion-item">
<h2 class="accordion-header" id="faqHeadingFour">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faqCollapseFour" aria-expanded="false" aria-controls="faqCollapseFour">
What type of data do you collect and how is it used?
</button>
</h2>
<div id="faqCollapseFour" class="accordion-collapse collapse" aria-labelledby="faqHeadingFour" data-bs-parent="#faqAccordion">
<div class="accordion-body">
<p>We collect personal details, transaction information, technical data, and IoT sensor data to process registrations, secure transactions, and monitor drug quality. All data is handled with strict security and privacy measures in place.</p>
</div>
</div>
</div>
<!-- FAQ Item 5 -->
<div class="accordion-item">
<h2 class="accordion-header" id="faqHeadingFive">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faqCollapseFive" aria-expanded="false" aria-controls="faqCollapseFive">
How do I get help if I encounter technical issues or have additional questions?
</button>
</h2>
<div id="faqCollapseFive" class="accordion-collapse collapse" aria-labelledby="faqHeadingFive" data-bs-parent="#faqAccordion">
<div class="accordion-body">
<p>If you experience any issues or have further questions, please contact our support team at <a href="mailto:noreply.medichain@gmail.com">noreply.medichain@gmail.com</a>.</p>
</div>
</div>
</div>
<!-- FAQ Item 6 -->
<div class="accordion-item">
<h2 class="accordion-header" id="faqHeadingSix">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faqCollapseSix" aria-expanded="false" aria-controls="faqCollapseSix">
What security measures protect my data and transactions?
</button>
</h2>
<div id="faqCollapseSix" class="accordion-collapse collapse" aria-labelledby="faqHeadingSix" data-bs-parent="#faqAccordion">
<div class="accordion-body">
<p>We use state-of-the-art encryption, blockchain immutability, regular security audits, and strict access controls to safeguard your data. These measures ensure that your transactions and personal information are protected against unauthorized access.</p>
</div>
</div>
</div>
<!-- FAQ Item 7 -->
<div class="accordion-item">
<h2 class="accordion-header" id="faqHeadingSeven">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faqCollapseSeven" aria-expanded="false" aria-controls="faqCollapseSeven">
How do I update my account information?
</button>
</h2>
<div id="faqCollapseSeven" class="accordion-collapse collapse" aria-labelledby="faqHeadingSeven" data-bs-parent="#faqAccordion">
<div class="accordion-body">
<p>You can update your account details by logging into your MediChain account and accessing the profile settings page. Follow the on-screen instructions to modify your information securely.</p>
</div>
</div>
</div>
</div> <!-- End of FAQ Accordion -->
<!-- Additional Help Section -->
<div class="mt-5 text-center">
<h2 class="section-title" style="font-size:2rem;">Need More Help?</h2>
<p>If you cannot find the answers you're looking for in our FAQs, please visit our support portal or get in touch with our customer service team.</p>
<a href="mailto:noreply.medichain@gmail.com" class="btn btn-primary-custom px-4">Contact Support</a>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-4 mb-4">
<h3 class="text-white mb-4">MediChain</h3>
<p>Transforming pharmaceutical supply chains with blockchain technology for enhanced security, transparency, and efficiency.</p>
<div class="social-links mt-3">
<a href="https://github.com/ThisIs-Developer/MediChain"><i class="fab fa-github"></i></a>
</div>
</div>
<div class="col-lg-2 col-md-4 mb-4">
<div class="footer-links">
<h5>Quick Links</h5>
<ul>
<li><a href="index.html#home">Home</a></li>
<li><a href="index.html#features">Features</a></li>
<li><a href="index.html#how-it-works">How It Works</a></li>
<li><a href="index.html#benefits">Benefits</a></li>
<li><a href="index.html#team">Team</a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-4 mb-4">
<div class="footer-links">
<h5>Support</h5>
<ul>
<li><a href="help-center.html">Help Center</a></li>
<li><a href="help-center.html#faq">FAQ</a></li>
<li><a href="privacy-policy.html">Privacy Policy</a></li>
<li><a href="terms-of-service.html">Terms & Conditions</a></li>
</ul>
</div>
</div>
</div>
<div class="copyright">
<p>© 2025 MediChain. All rights reserved.</p>
</div>
</div>
</footer>
<!-- Bootstrap Bundle with Popper JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
<!-- Smooth Scrolling Script -->
<script>
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
}
// Close navbar collapse on mobile after link click
const navbarCollapse = document.querySelector('.navbar-collapse');
if (navbarCollapse.classList.contains('show')) {
navbarCollapse.classList.remove('show');
}
});
});
// Navbar style update on scroll
window.addEventListener('scroll', function() {
const navbar = document.querySelector('.navbar');
if (window.scrollY > 50) {
navbar.style.padding = '10px 0';
navbar.style.boxShadow = '0 4px 6px rgba(0,0,0,0.1)';
} else {
navbar.style.padding = '15px 0';
navbar.style.boxShadow = 'none';
}
});
</script>
</body>
</html>