forked from Anishkagupta04/RAPIDOC-HEALTHCARE-WEBSITE-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1306 lines (1154 loc) · 57.2 KB
/
index.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
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
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<link rel="icon" type="image/x-icon" href="favicon.png">
<!-- Bootstrap Icons CDN link -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./style.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
<link rel="stylesheet" href="googletranslate.css">
<script type="text/javascript">
(function () {
emailjs.init({
publicKey: "o6kveYmOSDrs0l1Mg",
});
})();
</script>
<script src="https://kit.fontawesome.com/b08b6de27e.js" crossorigin="anonymous"></script>
<script src="https://unpkg.com/scrollreveal"></script>
<title>RapiDoc</title>
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<!-- transalator -->
<script src="https://translate.google.com/translate_a/element.js?cb=loadGoogleTranslate"></script>
<!-- CSS Files -->
<link rel="stylesheet" href="index.css">
<link href="Css-Files/animate.min.css" rel="stylesheet">
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="fontawesome-free/css/all.min.css" rel="stylesheet">
<link href="glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="remixicon/remixicon.css" rel="stylesheet">
<link href="swiper/swiper-bundle.min.css" rel="stylesheet">
<link href="patient-portal.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/css/intlTelInput.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" />
<link rel="stylesheet" href="chatbox.css">
<!-- Google Fonts Link For Icons chatboxx -->
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@48,400,1,0" />
<link rel="stylesheet" href="./Css-Files/aboutus.css" />
<link rel="stylesheet" href="./Css-Files/testimonial.css" />
<script src="chatboxx.js" defer></script>
</head>
<body>
<div class="pre">
<div class="loader"></div>
</div>
<!-- ############# Header ############# -->
<header class="header_container nav-h">
<div class="img">
<img id="rd-logo" style="width: 90px; height: auto;" src="images/rd.png">
</div>
<nav class="nav_menu">
<ul class="nav_link vis-h">
<li><a href="index.html"><i class="bi bi-house-door-fill"></i> Home</a></li>
<li><a href="#about"><i class="bi bi-info-circle-fill"></i> About</a></li>
<li><a href="news.html"><i class="bi bi-newspaper"></i> News</a></li>
<li><a href="dex.html"><i class="bi bi-gear"></i> Service</a></li>
<li><a href="#patient-portal"><i class="bi bi-person"></i> Patient Portal</a></li>
<li><a href="#doctors"><i class="bi bi-person-circle"></i> Doctor</a></li>
<li><a href="#contact"><i class="bi bi-telephone"></i>Contact us</a></li>
<li><a href="#feedback"><i class="bi bi-star"></i>Rate Us</a></li>
<li><a href="log/login.html"><i class="bi bi-box-arrow-right"></i> Sign in/Sign up</a></li>
<a href="./Html-Files/Doctor Experience.html"><button>Find a Doctor</button></a>
</ul>
<div class="hamburger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
</nav>
</header>
<!-- ############# Header ############# -->
<header id="header" class="fixed-top">
<div class="container d-flex align-items-center">
<a href="#appointment" class="appointment-btn scrollto">
<span class="d-md-inline">EMERGENCY</span></a>
</div>
</header>
<div class="container" style="display:flex ;">
<div class="content">
<h1 style="font-size: 65px;">
Welcome to <span style="color: #55a5ea;">RapiDoc!</span> <br /> Your one-stop digital <br> healthcare
destination
</h1>
<h4>
<a href="#about" class="btn-get-started scrollto">Download Now</a>
</h4>
</div>
<img class="sec-img" src="images/rd.png" alt="" />
</div>
<!-- End Home -->
<main id="main">
<!-- ############ Featured Services Section ############ -->
<section id="featured-services" class="featured-services">
<div class="container" data-aos="fade-up">
<div class="row">
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0">
<div class="icon-box" data-aos="fade-up" data-aos-delay="100">
<div class="icon1"><i class="fas fa-heartbeat"></i></div>
<h4 class="title"><a href=""> Normal checkup</a></h4>
<p class="description">Detect medical issues, identify risk factors and illnesses before they start to
cause problems.</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0">
<div class="icon-box" data-aos="fade-up" data-aos-delay="400">
<div class="icon2"><i class="fas fa-dna"></i></div>
<h4 class="title"><a href="test.html">Blood Test</a></h4>
<p class="description"> Get your tests done to look for signs of disease or agents that cause disease.</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0">
<div class="icon-box" data-aos="fade-up" data-aos-delay="300">
<div class="icon3"><i class="fas fa-temperature-high"></i></div>
<h4 class="title"><a href="">Body temperature</a></h4>
<p class="description">Body temperature can be anywhere from 97 F to 99 F. Babies and children have a
little higher range: 97.9 F to 100.4 F.</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0">
<div class="icon-box" data-aos="fade-up" data-aos-delay="200">
<div class="icon4"><i class="fas fa-hand-holding-medical"></i></div>
<h4 class="title"><a href="medicine.html">Medicine use</a></h4>
<p class="description">Know what to use when to use and how to use.
</p>
</div>
</div>
</div>
</div>
</section><!-- End Featured Services Section -->
<!-- ################### About Section ################### -->
<section id="about" class="about">
<div id="about-us">
<h1 class="about-us-heading">About Us</h1>
<section class="about-service">
<div class="sec-1">
<img src="img/about.png" class="about-img">
</div>
<div class="sec-2">
<div class="a-1">
<div class="a-l">
<div class="h-icon"><svg width="36px" height="36px" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M12 6.00019C10.2006 3.90317 7.19377 3.2551 4.93923 5.17534C2.68468 7.09558 2.36727 10.3061 4.13778 12.5772C5.60984 14.4654 10.0648 18.4479 11.5249 19.7369C11.6882 19.8811 11.7699 19.9532 11.8652 19.9815C11.9483 20.0062 12.0393 20.0062 12.1225 19.9815C12.2178 19.9532 12.2994 19.8811 12.4628 19.7369C13.9229 18.4479 18.3778 14.4654 19.8499 12.5772C21.6204 10.3061 21.3417 7.07538 19.0484 5.17534C16.7551 3.2753 13.7994 3.90317 12 6.00019Z"
stroke="#2F7F81" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg></div>
</div>
<div class="a-r">
<div class="head-1">HEALTH CHECKUPS</div>
<div class="head-2">Bootcamps, personalised check-ups,newsletter, it's all here</div>
</div>
</div>
<div class="a-2">
<div class="b-l">
<div class="a-icon">
<svg height="28px" width="28px" version="1.1" id="_x32_" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512" xml:space="preserve">
<style type="text/css">
.st0 {
fill: #2F7F81;
}
</style>
<g>
<polygon class="st0" points="501.539,169.221 453.886,86.7 303.669,173.449 303.669,0 208.365,0 208.365,173.479 58.114,86.73
10.461,169.261 160.674,255.99 10.501,342.71 58.154,425.231 208.365,338.482 208.365,512 303.669,512 303.669,338.542
453.846,425.271 501.499,342.74 351.267,255.99 " />
</g>
</svg>
</div>
</div>
<div class="b-r">
<div class="head-1">EMERGENCY WARDS</div>
<div class="head-2">Avoid rush and get immediate medical assistance, the wards and vacancies.</div>
</div>
</div>
<div class="a-3">
<div class="c-l">
<div class="q-icon">
<svg width="44px" height="44px" viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<title>question</title>
<g id="Page-1" stroke="none" stroke-width="0.5" fill="none" fill-rule="evenodd">
<g id="add" fill="#2F7F81" transform="translate(42.666667, 42.666667)">
<path
d="M291.76704,163.504 C291.76704,177.01952 288.33216,188.82176 281.479253,198.90112 C275.828267,207.371093 266.358187,216.549547 253.042987,226.434987 C245.378987,231.682347 240.331947,236.618667 237.916587,241.257813 C234.87744,246.90624 233.376213,255.371093 233.376213,266.666667 L190.710827,266.666667 C190.710827,249.530027 192.53504,237.027413 196.165333,229.162667 C200.394453,219.679573 209.571627,210.098773 223.686187,200.42048 C230.350293,195.374933 235.188693,190.2368 238.214827,184.994773 C241.839787,179.143253 243.664,172.49216 243.664,165.028693 C243.664,153.13024 240.125013,144.26304 233.070293,138.404907 C227.4336,134.177067 220.56768,132.059947 212.501333,132.059947 C199.39328,132.059947 189.911467,136.398507 184.065067,145.069013 C179.829333,151.518293 177.7056,159.787733 177.7056,169.868587 L177.7056,170.173227 L132.34368,170.173227 C132.34368,143.751253 140.703147,123.790507 157.43488,110.274773 C171.554773,98.9922133 189.007787,93.3346133 209.77344,93.3346133 C227.933653,93.3346133 243.865813,96.86848 257.571627,103.9232 C280.37504,115.62624 291.76704,135.494827 291.76704,163.504 Z M426.666667,213.333333 C426.666667,331.153707 331.153707,426.666667 213.333333,426.666667 C95.51296,426.666667 3.55271368e-14,331.153707 3.55271368e-14,213.333333 C3.55271368e-14,95.51168 95.51296,3.55271368e-14 213.333333,3.55271368e-14 C331.153707,3.55271368e-14 426.666667,95.51168 426.666667,213.333333 Z M384,213.333333 C384,119.226667 307.43872,42.6666667 213.333333,42.6666667 C119.227947,42.6666667 42.6666667,119.226667 42.6666667,213.333333 C42.6666667,307.43872 119.227947,384 213.333333,384 C307.43872,384 384,307.43872 384,213.333333 Z M213.332053,282.666667 C198.60416,282.666667 186.665387,294.60544 186.665387,309.333333 C186.665387,324.061227 198.60416,336 213.332053,336 C228.059947,336 239.99872,324.061227 239.99872,309.333333 C239.99872,294.60544 228.059947,282.666667 213.332053,282.666667 Z"
id="Shape">
</path>
</g>
</g>
</svg>
</div>
</div>
<div class="c-r">
<div class="head-1">SERVICES</div>
<div class="head-2">An apple a day won't keep Rapidoc away. We are always here at your service, bringing
to you the best facilities.</div>
</div>
</div>
</div>
</section>
<div class="about-us-block">
<div class="about-us-community">
<div style="display: flex; align-items: center; gap: 1rem;">
<img id="community-img" src="./images/checkup.png" alt=""
style="margin-left: 1rem; margin-top: 1rem; width: 4rem;">
<div class="about-us-blk-text">Comprehensive Health Checkups</div>
</div>
<p class="about-us-blk-para">At Rapidoc, we prioritize your well-being with thorough health checkups that
are designed to detect potential health issues early. Our comprehensive packages include a range of tests
and screenings, providing a detailed analysis of your health status. Book your health checkup easily
through our platform and receive personalized recommendations from our medical experts.</p>
</div>
<div class="about-us-product">
<div style="display: flex; align-items: center; gap: 1rem;">
<img id="product-img" src="./images/ward.png" alt=""
style="margin-left: 1rem; margin-top: 1rem; width: 4rem;">
<div class="about-us-blk-text">Emergency Ward Availability</div>
</div>
<p class="about-us-blk-para">In critical situations, every second counts. Rapidoc offers real-time updates
on the availability of emergency wards across various hospitals. This feature ensures that you can find
the nearest hospital with an open emergency ward promptly, facilitating quicker access to urgent medical
care when you need it most.</p>
</div>
</div>
<div class="about-us-block">
<div class="about-us-location">
<div style="display: flex; align-items: center; gap: 1rem;">
<img id="location-img" src="./images/appointment.png" alt=""
style="margin-left: 1rem; margin-top: 1rem; width: 4rem;">
<div class="about-us-blk-text">Seamless Appointment Booking</div>
</div>
<p class="about-us-blk-para">Say goodbye to long queues and waiting times with Rapidoc's seamless
appointment booking system. Our platform allows you to prebook appointments with specialists across
numerous hospitals. This ensures you receive timely consultations and reduces the hassle of waiting,
making your healthcare experience more efficient and convenient.</p>
</div>
<div class="about-us-event">
<div style="display: flex; align-items: center; gap: 1rem;">
<img id="event-img" src="./images/services.png" alt=""
style="margin-left: 1rem; margin-top: 1rem; width: 4rem;">
<div class="about-us-blk-text">Personalized Healthcare Services</div>
</div>
<p class="about-us-blk-para">Rapidoc is dedicated to offering personalized healthcare services tailored to
meet your unique needs. Our platform connects you with a variety of specialists and healthcare providers,
ensuring you receive the best possible care. From tailored treatment plans to ongoing health management,
Rapidoc supports your journey to optimal health with expert guidance and personalized attention.</p>
</div>
</div>
</div>
</section>
<script>
document.querySelectorAll('.about-us-community').forEach(function (element) {
element.addEventListener('mouseover', function () {
element.querySelector('img').src = './images/checkuphover.png';
});
element.addEventListener('mouseleave', function () {
element.querySelector('img').src = './images/checkup.png';
});
});
document.querySelectorAll('.about-us-event').forEach(function (element) {
element.addEventListener('mouseover', function () {
element.querySelector('img').src = './images/serviceshover.png';
});
element.addEventListener('mouseleave', function () {
element.querySelector('img').src = './images/services.png';
});
});
document.querySelectorAll('.about-us-product').forEach(function (element) {
element.addEventListener('mouseover', function () {
element.querySelector('img').src = './images/wardhover.png';
});
element.addEventListener('mouseleave', function () {
element.querySelector('img').src = './images/ward.png';
});
});
document.querySelectorAll('.about-us-location').forEach(function (element) {
element.addEventListener('mouseover', function () {
element.querySelector('img').src = './images/appointmenthover.png';
});
element.addEventListener('mouseleave', function () {
element.querySelector('img').src = './images/appointment.png';
});
});
</script>
<!-- End About Section -->
<!-- ################## Counts Section ################## -->
<section id="counts" class="counts">
<div class="container" data-aos="fade-up">
<div class="row no-gutters">
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch" id="abc">
<div class="count-box">
<i class="fas fa-user-md"></i>
<span data-purecounter-start="0" data-purecounter-end="95" data-purecounter-duration="1"
class="purecounter"></span>
<p><strong>Doctors Available</strong> <br><br>Doctors listed on our website.</p><br>
<a href="#doctors">Find out more »</a>
</div>
</div>
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch" id="abc">
<div class="count-box">
<i class="fas fa-bed"></i>
<span data-purecounter-start="0" data-purecounter-end="36" data-purecounter-duration="1"
class="purecounter"></span>
<p><strong>Beds Available</strong> <br><br>Nearby emergency beds available.</p><br>
<a href="">Find out more »</a>
</div>
</div>
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch" id="abc">
<div class="count-box">
<i class="fas fa-flask-vial"></i>
<span data-purecounter-start="0" data-purecounter-end="23" data-purecounter-duration="1"
class="purecounter"></span>
<p><strong>Nearest Labs</strong> <br><br>Test labs and clinics near you.</p><br>
<a href="">Find out more »</a>
</div>
</div>
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch" id="abc">
<div class="count-box">
<i class="fas fa-trophy"></i>
<span data-purecounter-start="0" data-purecounter-end="1250" data-purecounter-duration="1"
class="purecounter"></span>
<p><strong>User Reviews</strong><br> <br>Over 1K positive reviews.</p><br>
<a href="#test">Find out more »</a>
</div>
</div>
</div>
</div>
</section><!-- End Counts Section -->
<!-- #################### Services Section #################### -->
<section id="services" class="services">
<div class="section-title">
<h2 style="text-align:center;">Services</h2>
<p>Our services are for your good health. We are with you at every digital step.</p>
</div>
<div class="container">
<div class="align-items-stretch ">
<div class="icon-box">
<div class="icon"><i class="fas fa-heartbeat"></i></div>
<h4><a href="/Html-Files/input.html">Clinics/Labs</a></h4>
<p>Locate the best healthcare facilities around you hassle-free.From routine check-ups to specialized
treatments, find the right clinic or lab that meets your needs. Our database is updated regularly to
ensure you have the most accurate information.</p>
</div>
</div>
<div class="align-items-stretch ">
<div class="icon-box">
<div class="icon"><i class="fas fa-pills"></i></div>
<h4><a href="https://www.1mg.com">Pharmacy</a></h4>
<p>Get your prescribed medicines delivered at your doorstep.Our pharmacy service ensures you never miss a
dose with timely reminders and easy refill options. Enjoy the convenience of home delivery and exclusive
discounts on a wide range of medicines.</p>
</div>
</div>
<div class="align-items-stretch ">
<div class="icon-box">
<div class="icon"><i class="fas fa-hospital-user"></i></div>
<h4><a href="">Daily Feed</a></h4>
<p>Access to heath benefits like bootcamps, vaccination drives and much more.Stay informed about the latest
health trends, wellness tips, and upcoming events in your area. Participate in community health
initiatives and boost your wellbeing.
</p>
</div>
</div>
<div class="align-items-stretch ">
<div class="icon-box">
<div class="icon"><i class="fas fa-dna"></i></div>
<h4><a href="./Html-Files/blood.html">Blood Bank</a></h4>
<p>Know the blood banks and blood groups available around you. No one should suffer ỉn emergencies.Find the
nearest blood donation centers, check blood availability, and get information on how to donate or request
blood in urgent situations.</p>
</div>
</div>
<div class="align-items-stretch ">
<div class="icon-box">
<div class="icon"><i class="fas fa-wheelchair"></i></div>
<h4><a href="">Disabled Person</a></h4>
<p>Convenient medical care is here. Wheelchair accessible hospitals and clinics, find all in one go.Access
resources and support tailored to the needs of individuals with disabilities, ensuring a seamless
healthcare experience for everyone.</p>
</div>
</div>
<div class="align-items-stretch">
<div class="icon-box">
<div class="icon"><i class="fas fa-notes-medical"></i></div>
<h4><a href="https://www.medicalnewstoday.com/">Health Post</a></h4>
<p>Weekly, monthly, yearly or each day, however you like it! Subscribe to our health post for expert
articles, tips, and insights to help you make informed health decisions.</p>
</div>
</div>
</div>
</section><!-- End Services Section -->
<!-- Patient Portal Section -->
<section id="patient-portal" class="patient-portal">
<div class="container-patientportal">
<div class="section-title section-black-text" id="section-patientportal">
<h2>Patient Portal</h2>
<p>Access your medical records, lab results, and prescription history securely.</p>
</div>
<div class="container">
<!-- Add Login Form for Patient Portal -->
<div class="login-box">
<div class="avatar">
<img src="img/avatar.png" height="220px" width="263px" alt="Avatar">
</div>
<form>
<div class="textbox">
<i class="fas fa-user"></i>
<input type="text" placeholder="Username" name="username" required>
</div>
<br>
<div class="textbox">
<i class="fas fa-lock"></i>
<input type="password" placeholder="Password" name="password" required>
</div>
<br>
<input type="submit" class="btn" value="SUBMIT">
<div class="register-link">
<a href="#">Not registered yet? Register Here</a>
</div>
<div class="forgot-password" id="forgot-password-patient-portal">
<a href="forgot-password.php">Forgot Your Password?</a>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- Appointment Section -->
<section id="appointment" class="appointment section-bg">
<div class="container" style="border-radius: 10px;">
<div class="section-title section-black-text">
<h2>Make an Appointment</h2>
<p>We listed the docs, we made you a form. You make us an appointment.</p>
</div>
<form action="successful_appointment.html" method="post" class="php-email-form">
<div class="form-group">
<input type="text" name="name" class="form-control" id="name" placeholder="Your Name" required>
</div>
<div class="form-group">
<input type="email" class="form-control" name="email" id="email" placeholder="Your Email" required>
</div>
<div class="form-group">
<select name="location" id="location" class="form-select" required>
<option value="">Your Location</option>
<option value="Mumbai">Mumbai</option>
<option value="Delhi">Delhi</option>
<option value="Chennai">Chennai</option>
</select>
</div>
<div class="form-group">
<input type="date" name="date" class="form-control datepicker" id="date" placeholder="Appointment Date"
required>
<script>
// To set value of minimum date in calendar
var currentDate = new Date();
var year = currentDate.getFullYear();
var month = (currentDate.getMonth() + 1).toString().padStart(2, '0');
var day = currentDate.getDate().toString().padStart(2, '0');
var formattedDate = `${year}-${month}-${day}`;
document.getElementById('date').setAttribute('min', formattedDate);
</script>
</div>
<div class="form-group">
<select name="age" id="age" class="form-select" required>
<option value="">Select Age</option>
<option value="18 or below">18 or below</option>
<option value="18 to 55">18 to 55</option>
<option value="55 above">55 above</option>
</select>
</div>
<div class="form-group">
<select name="doctor" id="doctor" class="form-select" required>
<option value="">Select Doctor</option>
<option value="Doctor 1">Doctor 1</option>
<option value="Doctor 2">Doctor 2</option>
<option value="Doctor 3">Doctor 3</option>
</select>
</div>
<div class="form-group">
<select name="time-slot" id="time-slot" class="form-select" required>
<option value="">Select Time Slot</option>
<option value="9:00 AM">9:00 AM</option>
<option value="11:00 AM">11:00 AM</option>
<option value="2:00 PM">2:00 PM</option>
</select>
</div>
<div class="form-group">
<select name="hospital" id="hospital" class="form-select" required>
<option value="">Select Hospital</option>
<option value="Hospital 1">Hospital 1</option>
<option value="Hospital 2">Hospital 2</option>
<option value="Hospital 3">Hospital 3</option>
</select>
</div>
<div class="form-group">
<select name="opd-section" id="opd-section" class="form-select" required>
<option value="">Select OPD Section</option>
<option value="ENT">ENT</option>
<option value="Gynecologist">Gynecologist</option>
</select>
</div>
<div class="text-center">
<button type="submit">Make an Appointment</button>
</div>
</form>
</div>
</section>
<!-- End Appointment Section -->
<!-- ################# Doctors Section ################# -->
<section id="doctors" class="doctors">
<div class="section-title">
<h2>Doctors</h2>
<p>Don’t compromise your health when we have listed the best doctors for you!</p>
</div>
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="member d-flex align-items-start">
<div class="pic"><img src="img/doctors/1.png" class="img-fluid" alt=""
style="width: 188px; height: 188px;"></div>
<div class="member-info">
<h4>Dermatologist</h4>
<br>
<div class="nxt-pg"><a href="Html-Files/derma.html"><button type="">Appoint a Doctor</button></a></div>
</div>
</div>
</div>
<div class="col-lg-6 mt-4 mt-lg-0">
<div class="member d-flex align-items-start">
<div class="pic"><img src="img/doctors/2.png" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Gynecologist</h4>
<br>
<div class="nxt-pg"><a href="Html-Files/gynaco.html"><button type="">Appoint a Doctor</button></a></div>
</div>
</div>
</div>
<div class="col-lg-6 mt-4">
<div class="member d-flex align-items-start">
<div class="pic"><img src="img/doctors/3.png" class="img-fluid" alt=""
style="width: 188px; height: 188px;"></div>
<div class="member-info">
<h4>Cardiologist</h4>
<br>
<div class="nxt-pg"><a href="Html-Files/cardio.html"><button type="">Appoint a Doctor</button></a></div>
</div>
</div>
</div>
<div class="col-lg-6 mt-4">
<div class="member d-flex align-items-start">
<div class="pic"><img src="img/doctors/4.png" class="img-fluid" alt=""
style="width: 188px; height: 188px;"></div>
<div class="member-info">
<h4>ENT</h4>
<br>
<div class="nxt-pg"><a href="Html-Files/ent.html"><button type="">Appoint a Doctor</button></a></div>
</div>
</div>
</div>
<div class="col-lg-6 mt-4">
<div class="member d-flex align-items-start">
<div class="pic"><img src="img/doctors/Image(13).png" class="img-fluid" alt=""
style="width: 188px; height: 188px;"></div>
<div class="member-info">
<h4>Pediatrician</h4>
<br>
<div class="nxt-pg"><a href="Html-Files/pediatrition.html"><button type="">Appoint a Doctor</button></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Doctors Section -->
<!-- ################# Contact Section ################# -->
<!-- clicking on "contact us" directs to this section -->
<section id="contact" class="contact">
<div class="section-title">
<h2>Contact</h2>
<p>Located your appointment. Feel free to give us feedback and help us improve our digital med care.</p>
</div>
<div class="container">
<!--Google map-->
<div class="mapouter">
<div class="gmap_canvas">
<iframe class="gmap_iframe" width="100%" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3500.8055368048804!2d77.22981385036265!3d28.6655407892513!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x390cfd0683919c3b%3A0xf5fc331b74c2b9e2!2sIndira%20Gandhi%20Delhi%20Technical%20University%20for%20Women!5e0!3m2!1sen!2sin!4v1679424592719!5m2!1sen!2sin"></iframe>
<a href="https://www.fnfgo.com/">FNF Mods</a>
</div>
</div>
<br>
<div class="row mt-2" style="display: flex; flex-direction: row; align-items: stretch; justify-content: space-around;">
<div class="col-lg-4">
<div class="info">
<div class="address">
<i class="fa fa-location-dot"></i>
<h4>Location:</h4>
<p><a href="https://www.google.com/maps/search/?api=1&query=IGDTUW,Delhi" target="_blank">IGDTUW, Delhi</a></p>
</div>
<div class="email">
<i class="fa fa-envelope"></i>
<h4>Email:</h4>
<p><a href="mailto:rapidoc@mail.com">rapidoc@mail.com</a></p>
</div>
<div class="phone">
<i class="fa fa-phone"></i>
<h4>Call:</h4>
<p><a href="tel:+91 1234567890">+91 1234567890</a></p>
</div>
</div>
</div>
<div class="col-lg-8 mt-5 mt-lg-0">
<form id="contactForm" action="" role="form" class="php-email-form">
<div class="form-group">
<input type="text" name="name" class="form-control enhanced-input" id="name" placeholder=" Your Name" required>
</div>
<div class="form-group mt-3">
<input type="email" class="form-control enhanced-input" name="email" id="email" placeholder=" Your Email" required>
</div>
<div class="form-group mt-3">
<input type="text" class="form-control enhanced-input" name="subject" id="subject" placeholder=" Subject" required>
</div>
<div class="form-group mt-3">
<textarea class="form-control enhanced-textarea" name="message" rows="5" placeholder="Message" required></textarea>
</div>
<div class="text-center"><button type="submit" class="btn-submit">Send Message</button></div>
</form>
<div id="confirmationMessage" class="confirmation-message">
Thank you for your message. We will get back to you shortly.
</div>
</div>
</div>
</div>
</section>
<script>
document.getElementById('contactForm').addEventListener('submit', function(event) {
event.preventDefault(); // Prevent form submission
// Display confirmation message
var confirmationMessage = document.getElementById('confirmationMessage');
confirmationMessage.style.display = 'block';
// Reset the form
event.target.reset();
setTimeout(function() {
confirmationMessage.style.display = 'none';
}, 5000); //msg disappears after 5s
});
</script>
<!-- End Contact Section -->
<!-- testimonial section -->
<section id="test" class="testimonals">
<h2 class="h2 section-title has-underline"
style="margin-top: 15px;align-items: center; justify-content: center; display: flex;">
What our Patients Say
</h2>
<div class="testimonals-content">
<div class="swiper testimonals-slider js-testimonals-slider">
<div class="swiper-wrapper">
<div class="swiper-slide testimonals-item" id="slide-item" >
<div class="info">
<img src="./images/profile1.webp" alt="">
<div class="text-box">
<h3 class="name">Dinesh Karthik</h3>
<span class="job">Bangalore</span>
</div>
</div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quod enim, architecto eum pariatur explicabo
aliquam incidunt provident vero nostrum quam!</p>
<div class="rating">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
</div>
</div>
<div class="swiper-slide testimonals-item" id="slide-item" >
<div class="info">
<img src="./images/profile2.webp" alt="">
<div class="text-box">
<h3 class="name">Virat Kohli</h3>
<span class="job">Delhi</span>
</div>
</div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quod enim, architecto eum pariatur explicabo
aliquam incidunt provident vero nostrum quam!</p>
<div class="rating">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
</div>
</div>
<div class="swiper-slide testimonals-item" id="slide-item" >
<div class="info">
<img src="./images/profile3.webp" alt="">
<div class="text-box">
<h3 class="name">Smrithi Mandanna</h3>
<span class="job">Mumbai</span>
</div>
</div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quod enim, architecto eum pariatur explicabo
aliquam incidunt provident vero nostrum quam!</p>
<div class="rating">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
</div>
</div>
<div class="swiper-slide testimonals-item" id="slide-item" >
<div class="info">
<img src="./images/profile4.webp" alt="">
<div class="text-box">
<h3 class="name">John Doe</h3>
<span class="job">Chennai</span>
</div>
</div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quod enim, architecto eum pariatur explicabo
aliquam incidunt provident vero nostrum quam!</p>
<div class="rating">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
</div>
</div>
<div class="swiper-slide testimonals-item" id="slide-item" >
<div class="info">
<img src="./images/profile5.webp" alt="">
<div class="text-box">
<h3 class="name">Shikha Pandey</h3>
<span class="job">Kolkata</span>
</div>
</div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quod enim, architecto eum pariatur explicabo
aliquam incidunt provident vero nostrum quam!</p>
<div class="rating">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
</div>
</div>
</div>
</div>
<div class="swiper-pagination js-testimonals-pagination"></div>
</div>
</div>
</div>
<div class="swiper-pagination js-testimonals-pagination"></div>
</div>
</section>
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<!-- testimonial section -->
<!-- Feedback System-->
<div class="feedback-wrapper">
<div class="feedback-form">
<h2>We'd Love Your Feedback!</h2>
<p>Let us know how we're doing and how we can improve. <br /> <span style="color: hwb(181 21% 19%);"><strong>RapiDoc</strong> Healthcare</p>
<div>
<label for="rating" class="rate-us"> <strong>Please Rate us below</strong></label>
<div class="rating-container">
<button type="button" onclick="handleRatingChange(1)">☆</button>
<button type="button" onclick="handleRatingChange(2)">☆</button>
<button type="button" onclick="handleRatingChange(3)">☆</button>
<button type="button" onclick="handleRatingChange(4)">☆</button>
<button type="button" onclick="handleRatingChange(5)">☆</button>
</div>
</div>
<form id="feedback-form" onsubmit="handleSubmit(event)">
<label for="name">Your Name</label>
<input type="text" id="name" placeholder="Enter your name" required>
<label for="email">Your Email</label>
<input type="email" id="email" placeholder="Enter your email" required>
<label for="feedback">Your Feedback</label>
<textarea id="feedback" rows="5" placeholder="Let us know how we can improve..." required></textarea>
<button type="submit">Submit Feedback</button>
</form>
</div>
</div>
<div id="popup" class="popup" style="display: none;">
<div class="popup-content">
<h2>Thank you for your Feedback! 💚</h2>
<div class="popup-icon">
<img src="/Feedback Tick.png" width="84" alt="✔️">
</div>
<p>Your feedback has been received.<br> We appreciate the input you provide.</p>
<button class="popup-button" onclick="closePopup()"><a class="active" aria-current="page">Back to Home</a></button>
</div>
</div>
<script>
let rating = null;
function handleRatingChange(value) {
rating = value;
updateStars();
}
function updateStars() {
const buttons = document.querySelectorAll('.rating-container button');
buttons.forEach((button, index) => {
if (index < rating) {
button.textContent = '★';
button.classList.add('filled');
} else {
button.textContent = '☆';
button.classList.remove('filled');
}
});
}
function handleSubmit(event) {
event.preventDefault();
const name = document.getElementById('name').value;
const email = document.getElementById('email').value;
const feedback = document.getElementById('feedback').value;
// For now, we will just simulate email sending success
console.log('Feedback submitted:', { name, email, rating, feedback });
// Reset the form fields
document.getElementById('feedback-form').reset();
rating = null;
updateStars();
// Show the popup
document.getElementById('popup').style.display = 'flex';
}
function closePopup() {
document.getElementById('popup').style.display = 'none';
}
const feedbackForm = document.querySelector('.feedback-form');
function isElementInViewport(el) {
const rect = el.getBoundingClientRect();
return (
rect.top >= 0 &&
rect.left >= 0 &&
rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) &&
rect.right <= (window.innerWidth || document.documentElement.clientWidth)
);
}
function handleScroll() {
if (isElementInViewport(feedbackForm)) {
feedbackForm.classList.add('animate-feedback');
window.removeEventListener('scroll', handleScroll);
}
}
window.addEventListener('scroll', handleScroll);
updateStars();
</script>
</main><!-- End #main -->
<!-- ############### Footer ############### -->
<footer>
<div class="footer-wrapper">
<div class="footer-columns">
<div class="other-columns">
<section>
<h4>Quick Links</h4><br>
<ul class="links">
<li><a href="index.html">Home</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="index.html#contact">Contact Us</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#doctors">Doctors</a></li>
<li><a href="./faq.html">FAQ</a></li>
</ul>
</section>
<section>
<h4>Explore</h4><br>
<ul class="links">
<li><a href="Html-Files/appointment.html">Appointment</a></li>
<li><a href="index.html#patient-portal">Patient Portal</a></li>
<li><a href="login.html">Login account</a></li>
<li><a href="#">Helplines</a></li>
<li><a href="index.html#contact">Location</a></li>
</ul>
</section>
<section>
<h4>Legal</h4><br>
<ul class="links">
<li><a href="Html-Files/customer_agreement.html">Customer Agreement</a></li>
<li><a href="Html-Files/privacy_policy_page.html">Privacy Policy</a></li>
<li><a href="Html-Files/terms_and_conditions.html">Terms and Conditions</a></li>
<li><a href="#">GDPR</a></li>
<li><a href="#">Security</a></li>
<li><a href="#">Testimonials</a></li>
</ul>
</section>