-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMedikitHealthCare.php
420 lines (312 loc) · 20.6 KB
/
MedikitHealthCare.php
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<!-- CSS FILES -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap" rel="stylesheet">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-icons.css" rel="stylesheet">
<link href="css/owl.carousel.min.css" rel="stylesheet">
<link href="css/owl.theme.default.min.css" rel="stylesheet">
<link href="css/templatemo-medic-care.css" rel="stylesheet">
</head>
<body id="top">
<main>
<nav class="navbar navbar-expand-lg bg-light fixed-top shadow-lg">
<div class="container">
<a class="navbar-brand mx-auto d-lg-none" href="MedikitHealthCare.php">
Medikit
<strong class="d-block">Health Care</strong>
</a>
<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 class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav mx-auto">
<li class="nav-item active">
<a class="nav-link" href="#hero">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#timeline">Timeline</a>
</li>
<li class="nav-item" onClick="location.href='Map.php'"></Button>
<a class="nav-link" href="#booking">Hospital-Map</a>
</li>
<li class="nav-item" onClick="location.href='chatbot.html'"></Button>
<a class="nav-link" href="#booking">Med-tips</a>
</li>
<a class="navbar-brand d-none d-lg-block" href="MedikitHealthCare.php">Medikit<strong class="d-block">Health Care</strong>
</a>
<li class="nav-item">
<a class="nav-link" href="#reviews">Testimonials</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
<?php
session_start();
if(isset($_SESSION['flag'])) {
if($_SESSION['flag'] == 'Login'){
?>
<li class="nav-item"onClick="location.href='appoint.php'"> <a class="nav-link" href="#Book">Book Appointment</a>
</li>
<li class="nav-item"onClick="location.href='shopping-cart/index.php'"> <a class="nav-link" href="#Book">Medicare</a>
</li>
<li class="nav-item"onClick="location.href='logout.php'"> <a class="nav-link" href="#logout">Logout</a>
</li>
<?php
}
} else {
?>
<li class="nav-item" onClick="location.href='registration.php'">
<a class="nav-link" href="#login">Registration</a>
</li>
<li class="nav-item" onClick="location.href='login.php'">
<a class="nav-link" href="#login">Login</a>
</li>
<?php
}
?>
</ul>
</div>
</div>
</nav>
<section class="hero" id="hero">
<div class="container">
<div class="row">
<div class="col-12">
<div id="myCarousel" class="carousel slide carousel-fade" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="images/slider/portrait-successful-mid-adult-doctor-with-crossed-arms.jpg" class="img-fluid" alt="">
</div>
<div class="carousel-item">
<img src="images/slider/young-asian-female-dentist-white-coat-posing-clinic-equipment.jpg" class="img-fluid" alt="">
</div>
<div class="carousel-item">
<img src="images/slider/doctor-s-hand-holding-stethoscope-closeup.jpg" class="img-fluid" alt="">
</div>
</div>
</div>
<div class="heroText d-flex flex-column justify-content-center">
<h1 class="mt-auto mb-2">
Better
<div class="animated-info">
<span class="animated-item">health</span>
<span class="animated-item">days</span>
<span class="animated-item">lives</span>
</div>
</h1>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section-padding" id="about">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6 col-12">
<h2 class="mb-lg-3 mb-3">Meet Dr. Ariti Singh</h2>
<p>Protect yourself and others by wearing masks and washing hands frequently. Outdoor is safer than indoor
for gatherings or holding events. People who get sick with Coronavirus disease (COVID-19) will experience
mild to moderate symptoms and recover without special treatments.</p>
</div>
<div class="col-lg-4 col-md-5 col-12 mx-auto">
<div class="featured-circle bg-white shadow-lg d-flex justify-content-center align-items-center">
<p class="featured-text"><span class="featured-number">We</span> are<br> hear to server you</p>
</div>
</div>
</div>
</div>
</section>
<section class="gallery">
<div class="container">
<div class="row">
<div class="col-lg-6 col-6 ps-0">
<img src="images/gallery/medium-shot-man-getting-vaccine.jpg" class="img-fluid galleryImage" alt="get a vaccine" title="get a vaccine for yourself">
</div>
<div class="col-lg-6 col-6 pe-0">
<img src="images/gallery/female-doctor-with-presenting-hand-gesture.jpg" class="img-fluid galleryImage" alt="wear a mask" title="wear a mask to protect yourself">
</div>
</div>
</div>
</section>
<section class="section-padding pb-0" id="timeline">
<div class="container">
<div class="row">
<h2 class="text-center mb-lg-5 mb-4">Our Timeline</h2>
<div class="timeline">
<div class="row g-0 justify-content-end justify-content-md-around align-items-start timeline-nodes">
<div class="col-9 col-md-5 me-md-4 me-lg-0 order-3 order-md-1 timeline-content bg-white shadow-lg">
<h3 class=" text-light">Get the vaccine</h3>
<p>"Science gave us the vaccine. Now, it's up to us to give it a chance."</p>
</div>
<div class="col-3 col-sm-1 order-2 timeline-icons text-md-center">
<i class="bi-patch-check-fill timeline-icon"></i>
</div>
<div class="col-9 col-md-5 ps-md-3 ps-lg-0 order-1 order-md-3 py-4 timeline-date">
<time>2023-03-22 Thursday</time>
</div>
</div>
<div class="row g-0 justify-content-end justify-content-md-around align-items-start timeline-nodes my-lg-5 my-4">
<div class="col-9 col-md-5 ms-md-4 ms-lg-0 order-3 order-md-1 timeline-content bg-white shadow-lg">
<h3 class=" text-light">Consulting your health</h3>
<p>Our health consulting services offer expert advice and guidance to help you make informed decisions about your health. Our team of qualified professionals can provide personalized solutions tailored to your unique needs, from prevention and wellness strategies to disease management and treatment plans. With our support, you can take a proactive approach to your health and achieve optimal well-being.</p>
<a href="https://www.google.com/search?q=free+css" target="_blank"></a>
</div>
<div class="col-3 col-sm-1 order-2 timeline-icons text-md-center">
<i class="bi-book timeline-icon"></i>
</div>
<div class="col-9 col-md-5 pe-md-3 pe-lg-0 order-1 order-md-3 py-4 timeline-date">
<time>2023-03-23 Firday</time>
</div>
</div>
<div class="row g-0 justify-content-end justify-content-md-around align-items-start timeline-nodes my-lg-5 my-4">
<div class="col-9 col-md-5 ms-md-4 ms-lg-0 order-3 order-md-1 timeline-content bg-white shadow-lg">
<h3 class=" text-light">Certified Doctor</h3>
<p>We are proud to offer health services provided by our team of certified doctors.
</p>
</div>
<div class="col-3 col-sm-1 order-2 timeline-icons text-md-center">
<i class="bi-file-medical timeline-icon"></i>
</div>
<div class="col-9 col-md-5 ps-md-3 ps-lg-0 order-1 order-md-3 py-4 timeline-date">
<time>2023-03-25 Saturday</time>
</div>
</div>
<div class="row g-0 justify-content-end justify-content-md-around align-items-start timeline-nodes my-lg-5 my-4">
<div class="col-9 col-md-5 ms-md-4 ms-lg-0 order-3 order-md-1 timeline-content bg-white shadow-lg">
<h3 class=" text-light">Get Medicine</h3>
<p class="mb-0 pb-0">Get Doctor Treatment With Door Step Medicine Delivery is isn't a great thing.</p>
<p>Get Medicine 24x7</p>
</div>
<div class="col-3 col-sm-1 order-2 timeline-icons text-md-center">
<i class="bi-globe timeline-icon"></i>
</div>
<div class="col-9 col-md-5 pe-md-3 pe-lg-0 order-1 order-md-3 py-4 timeline-date">
<time>2023-03-26 Sunday</time>
</div>
</div>
<div class="row g-0 justify-content-end justify-content-md-around align-items-start timeline-nodes">
<div class="col-9 col-md-5 me-md-4 me-lg-0 order-3 order-md-1 timeline-content bg-white shadow-lg">
<h3 class=" text-light">Special SOS Notification</h3>
<p>Get Time To Time Alert For Taking Medicine. We Care For You<a rel="nofollow" href="https://templatemo.com/contact" target="_parent">visit our contact page</a> for more information.</p>
</div>
<div class="col-3 col-sm-1 order-2 timeline-icons text-md-center">
<i class="bi-person timeline-icon"></i>
</div>
<div class="col-9 col-md-5 ps-md-3 ps-lg-0 order-1 order-md-3 py-4 timeline-date">
<time>2023-03-27 Monday</time>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section-padding pb-0" id="reviews">
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="text-center mb-lg-5 mb-4">Our Patients</h2>
<div class="owl-carousel reviews-carousel">
<figure class="reviews-thumb d-flex flex-wrap align-items-center rounded">
<div class="reviews-stars">
<i class="bi-star-fill"></i>
<i class="bi-star-fill"></i>
<i class="bi-star-fill"></i>
<i class="bi-star-fill"></i>
<i class="bi-star"></i>
</div>
<p class="text-primary d-block mt-2 mb-0 w-100"><strong>Best Health Care</strong></p>
<p class="reviews-text w-100">Good Doctor & Good Service. Best SOS Service.</p>
<figcaption class="ms-4">
<strong>Shrashti Gupta</strong>
<span class="text-muted">Patient</span>
</figcaption>
</figure>
<figure class="reviews-thumb d-flex flex-wrap align-items-center rounded">
<div class="reviews-stars">
<i class="bi-star-fill"></i>
<i class="bi-star-fill"></i>
<i class="bi-star-fill"></i>
<i class="bi-star-fill"></i>
<i class="bi-star"></i>
</div>
<p class="text-primary d-block mt-2 mb-0 w-100"><strong>Doctor cares everyone!</strong></p>
<p class="reviews-text w-100">Finest Doctor & Best Care.</p>
<figcaption class="ms-4">
<strong>Akshat Agrawal</strong>
<span class="text-muted">Recovered</span>
</figcaption>
</figure>
<figure class="reviews-thumb d-flex flex-wrap align-items-center rounded">
<div class="reviews-stars">
<i class="bi-star-fill"></i>
<i class="bi-star-fill"></i>
<i class="bi-star-fill"></i>
<i class="bi-star-fill"></i>
<i class="bi-star-fill"></i>
</div>
<p class="text-primary d-block mt-2 mb-0 w-100"><strong>Great services!</strong></p>
<p class="reviews-text w-100">Special Service Like Sos will help me alot in taking medicine on time.</p>
<figcaption class="ms-4">
<strong>Lavish Sheth</strong>
</div>
</div>
</div>
</div>
</section>
</main>
<footer class="site-footer section-padding" id="contact">
<div class="container">
<div class="row">
<div class="col-lg-5 me-auto col-12">
<h5 class="mb-lg-4 mb-3">Opening Hours</h5>
<ul class="list-group list-group-flush">
<li class="list-group-item d-flex">
Monday, Tuesday - Firday
<span>8:00 AM - 3:30 PM</span>
</li>
<li class="list-group-item d-flex">
Saturday, Sunday
<span>10:30 AM - 5:30 PM</span>
</li>
</ul>
</div>
<div class="col-lg-2 col-md-6 col-12 my-4 my-lg-0">
<h5 class="mb-lg-4 mb-3">Our Gmail</h5>
<p><a href="https://mail.google.com/mail/u/0/?ogbl#inbox">[email protected]
</a><p>
</div>
<div class="col-lg-3 col-md-6 col-12 ms-auto">
<h5 class="mb-lg-4 mb-3">Socials</h5>
<ul class="social-icon">
<li><a href="https://www.instagram.com/lavish_sheth_ls/" class="social-icon-link bi-instagram"></a></li>
<li><a href="https://www.youtube.com/channel/UCS9BcPpwy1W5Xorp0KU23aQ" class="social-icon-link bi-youtube"></a></li>
</ul>
</div>
<div class="col-lg-3 col-12 ms-auto mt-4 mt-lg-0">
<p class="copyright-text">Copyright © Medikit Health Care 2023
<br><br>Design By: <a target="_parent">Lavish Sheth, Akshat Agrawal. Shrashti Gupta</a></p>
</div>
</div>
</section>
</footer>
<!-- JAVASCRIPT FILES -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/scrollspy.min.js"></script>
<script src="js/custom.js"></script>
</body>
</html>