-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
578 lines (570 loc) · 39.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<link rel="shortcut icon" href="./assets/img/favicon.ico" />
<link rel="icon" sizes="76x76" href="./assets/img/logo.png" />
<link rel="stylesheet" href="./assets/vendor/@fortawesome/fontawesome-free/css/all.min.css" />
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/creativetimofficial/tailwind-starter-kit/compiled-tailwind.min.css" />
<title>Med-aid</title>
</head>
<body class="text-gray-800 antialiased">
<nav class="top-0 absolute z-50 w-full flex flex-wrap items-center justify-between px-2 py-3 navbar-expand-lg">
<div class="container px-4 mx-auto flex flex-wrap items-center justify-between">
<div class="w-full relative flex justify-between lg:w-auto lg:static lg:block lg:justify-start">
<a class="text-sm font-bold leading-relaxed inline-block mr-4 py-2 whitespace-no-wrap uppercase text-white"
href="index.html">Med-aid</a><button
class="cursor-pointer text-xl leading-none px-3 py-1 border border-solid border-transparent rounded bg-transparent block lg:hidden outline-none focus:outline-none"
type="button" onclick="toggleNavbar('example-collapse-navbar')">
<i class="text-white fas fa-bars"></i>
</button>
</div>
<div class="lg:flex flex-grow items-center bg-white lg:bg-transparent lg:shadow-none hidden"
id="example-collapse-navbar">
<ul class="flex flex-col lg:flex-row list-none mr-auto">
<li class="flex items-center">
<a class="lg:text-white lg:hover:text-gray-300 text-gray-800 px-3 py-4 lg:py-2 flex items-center text-xs uppercase font-bold"
href="#about"><i
class="lg:text-gray-300 text-gray-500 far fa-address-card text-lg leading-lg mr-2"></i>
About us</a>
</li>
</ul>
<ul class="flex flex-col lg:flex-row list-none lg:ml-auto">
<li class="flex items-center">
<a class="lg:text-white lg:hover:text-gray-300 text-gray-800 px-3 py-4 lg:py-2 flex items-center text-xs uppercase font-bold"
href="/receive.html"><i
class="lg:text-gray-300 text-gray-500 fas fa-capsules text-lg leading-lg "></i><span
class="inline-block ml-2">Receive Medicines</span></a>
</li>
<li class="flex items-center">
<a class="lg:text-white lg:hover:text-gray-300 text-gray-800 px-3 py-4 lg:py-2 flex items-center text-xs uppercase font-bold"
href="#donate"><i
class="lg:text-gray-300 text-gray-500 fas fa-prescription-bottle-alt text-lg leading-lg "></i><span
class="inline-block ml-2">Donate</span></a>
</li>
<li class="flex items-center">
<a class="lg:text-white lg:hover:text-gray-300 text-gray-800 px-3 py-4 lg:py-2 flex items-center text-xs uppercase font-bold"
href="/buy.html"><i
class="lg:text-gray-300 text-gray-500 fas fa-shopping-cart text-lg leading-lg "></i><span
class="inline-block ml-2">Buy</span></a>
</li>
<li class="flex items-center">
<a class="lg:text-white lg:hover:text-gray-300 text-gray-800 px-3 py-4 lg:py-2 flex items-center text-xs uppercase font-bold"
href="#sell"><i
class="lg:text-gray-300 text-gray-500 fas fa-coins text-lg leading-lg "></i><span
class="inline-block ml-2">Sell</span></a>
</li>
<li class="flex items-center">
<button onclick="window.open('https://youtu.be/f1ZwlCLvU68','_blank')"
class="bg-white text-gray-800 active:bg-gray-100 text-xs font-bold uppercase px-4 py-2 rounded shadow hover:shadow-md outline-none focus:outline-none lg:mr-1 lg:mb-0 ml-3 mb-3"
type="button" style="transition: all 0.15s ease 0s;">
<i class="fas fa-arrow-alt-circle-right"></i> Watch Video
</button>
</li>
</ul>
</div>
</div>
</nav>
<main>
<div class="relative pt-16 pb-32 flex content-center items-center justify-center" style="min-height: 75vh;">
<div class="absolute top-0 w-full h-full bg-center bg-cover"
style='background-image: url("https://images.unsplash.com/photo-1523243319451-54b60322f948?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1051&q=80");'>
<span id="blackOverlay" class="w-full h-full absolute opacity-75 bg-black"></span>
</div>
<div class="container relative mx-auto">
<div class="items-center flex flex-wrap">
<div class="w-full lg:w-6/12 px-4 ml-auto mr-auto text-center">
<div class="pr-12">
<div class="flex flex-wrap justify-center">
<div class="w-6/12 sm:w-4/12 px-4">
<img src="./assets/img/medaid.jpg" alt="medaid logo"
class="shadow rounded-full max-w-full h-auto align-middle border-none" />
</div>
</div>
<h1 class="text-white font-bold text-5xl">
Med-Aid
</h1>
<p class="mt-4 text-lg text-gray-300">
During these testing times, everyone requires appropriate health care and a lot of
people are not so fortunate to be able to afford all kinds of medicine. So we bring to
you a platform where you can donate medicines and the person in need can easily receive
and use the medicine which would have otherwise remained unsold or unused.
</p>
</div>
</div>
</div>
</div>
<div class="top-auto bottom-0 left-0 right-0 w-full absolute pointer-events-none overflow-hidden"
style="height: 70px; transform: translateZ(0px);">
<svg class="absolute bottom-0 overflow-hidden" xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none" version="1.1" viewBox="0 0 2560 100" x="0" y="0">
<polygon class="text-gray-300 fill-current" points="2560 0 2560 100 0 100"></polygon>
</svg>
</div>
</div>
<section class="pb-20 bg-gray-300 -mt-24">
<div class="container mx-auto px-4">
<div class="flex flex-wrap">
<div class="lg:pt-12 pt-6 w-full md:w-4/12 px-4 text-center">
<div
class="relative flex flex-col min-w-0 break-words bg-white w-full mb-8 shadow-lg rounded-lg">
<div class="px-4 py-5 flex-auto">
<div
class="text-white p-3 text-center inline-flex items-center justify-center w-12 h-12 mb-5 shadow-lg rounded-full bg-red-400">
<i class="fas fa-clinic-medical"></i>
</div>
<h6 class="text-xl font-semibold">Verified Pharmacists</h6>
<p class="mt-2 mb-4 text-gray-600">
All the pharmacists that sell or donate medicines using this platform are verified
and have a license to sell medicines to ensure safety and legality of the
transactions.
</p>
</div>
</div>
</div>
<div class="w-full md:w-4/12 px-4 text-center">
<div
class="relative flex flex-col min-w-0 break-words bg-white w-full mb-8 shadow-lg rounded-lg">
<div class="px-4 py-5 flex-auto">
<div
class="text-white p-3 text-center inline-flex items-center justify-center w-12 h-12 mb-5 shadow-lg rounded-full bg-blue-400">
<i class="fas fa-handshake"></i>
</div>
<h6 class="text-xl font-semibold">Trusted Donors & Receivers</h6>
<p class="mt-2 mb-4 text-gray-600">
Any person who is willing to give can donate medicines but medicines are accepted
only after thorough checking and quality ensurance. People receiving will have to
upload prescriptions to verify their needs.
</p>
</div>
</div>
</div>
<div class="pt-6 w-full md:w-4/12 px-4 text-center">
<div
class="relative flex flex-col min-w-0 break-words bg-white w-full mb-8 shadow-lg rounded-lg">
<div class="px-4 py-5 flex-auto">
<div
class="text-white p-3 text-center inline-flex items-center justify-center w-12 h-12 mb-5 shadow-lg rounded-full bg-green-400">
<i class="fab fa-creative-commons-nc"></i>
</div>
<h6 class="text-xl font-semibold">Non-Profit Platform</h6>
<p class="mt-2 mb-4 text-gray-600">
We do not take ask for any intermediate costs to make the transfer. This is because
we want to help people who are in need of medication and cannot afford it.
</p>
</div>
</div>
</div>
</div>
<div class="flex flex-wrap items-center mt-32" id="donate">
<div class="w-full md:w-5/12 px-4 mr-auto ml-auto">
<div
class="text-pink-600 p-3 text-center inline-flex items-center justify-center w-16 h-16 mb-6 shadow-lg rounded-full bg-pink-300">
<i class="fas fa-prescription-bottle-alt text-xl"></i>
</div>
<h3 class="text-3xl mb-2 font-semibold leading-normal">
Donate your medicines.
</h3>
<form id="donateform">
<p class="text-lg font-light leading-relaxed mt-4 mb-4 text-gray-700">
<label class="block uppercase text-gray-700 text-xs font-bold mb-2" for="full-name">Full
Name</label><input type="text" id="name"
class="px-3 py-3 placeholder-gray-400 text-gray-700 bg-white rounded text-sm shadow focus:outline-none focus:shadow-outline w-full"
placeholder="Your Name" style="transition: all 0.15s ease 0s;" />
</p>
<p class="text-lg font-light leading-relaxed mt-0 mb-4 text-gray-700">
<label class="block uppercase text-gray-700 text-xs font-bold mb-2"
for="email">Email</label><input type="email" id="email"
class="px-3 py-3 placeholder-gray-400 text-gray-700 bg-white rounded text-sm shadow focus:outline-none focus:shadow-outline w-full"
placeholder="Your email address" style="transition: all 0.15s ease 0s;" />
</p>
<p class="text-lg font-light leading-relaxed mt-0 mb-4 text-gray-700">
<label class="block uppercase text-gray-700 text-xs font-bold mb-2" for="email">Contact
Number</label><input type="number" id="phone"
class="px-3 py-3 placeholder-gray-400 text-gray-700 bg-white rounded text-sm shadow focus:outline-none focus:shadow-outline w-full"
placeholder="Your phone number" style="transition: all 0.15s ease 0s;" />
</p>
<p class="text-lg font-light leading-relaxed mt-0 mb-4 text-gray-700">
<label class="block uppercase text-gray-700 text-xs font-bold mb-2"
for="email">Locality</label><input type="text" id="locality"
class="px-3 py-3 placeholder-gray-400 text-gray-700 bg-white rounded text-sm shadow focus:outline-none focus:shadow-outline w-full"
placeholder="Your locality name" style="transition: all 0.15s ease 0s;" />
</p>
<p class="text-lg font-light leading-relaxed mt-0 mb-4 text-gray-700">
<label class="block uppercase text-gray-700 text-xs font-bold mb-2" for="email">Medicine
Name</label><input type="text" id="medname"
class="px-3 py-3 placeholder-gray-400 text-gray-700 bg-white rounded text-sm shadow focus:outline-none focus:shadow-outline w-full"
placeholder="Name of the medicines you want to donate"
style="transition: all 0.15s ease 0s;" />
</p>
<p class="text-lg font-light leading-relaxed mt-0 mb-4 text-gray-700">
<label class="block uppercase text-gray-700 text-xs font-bold mb-2" for="email">Medicine
Description</label><input type="text" id="meddesc"
class="px-3 py-3 placeholder-gray-400 text-gray-700 bg-white rounded text-sm shadow focus:outline-none focus:shadow-outline w-full"
placeholder="Quantity and unit of medicines"
style="transition: all 0.15s ease 0s;" />
</p>
<div class="text-center mt-6 inline-flex mb-6">
<button onclick="insert();"
class="bg-gray-800 text-white active:bg-gray-700 text-sm font-bold uppercase px-6 py-3 rounded shadow hover:shadow-lg outline-none focus:outline-none mr-1 mb-1"
type="button" style="transition: all 0.15s ease 0s;">
Submit
</button>
</div>
</form>
</div>
<div class="w-full md:w-4/12 px-4 mr-auto ml-auto">
<div
class="relative flex flex-col min-w-0 break-words bg-white w-full mb-6 shadow-lg rounded-lg bg-pink-600">
<img alt="..."
src="https://images.unsplash.com/photo-1542736667-069246bdbc6d?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1051&q=80"
class="w-full align-middle rounded-t-lg" />
<blockquote class="relative p-8 mb-4">
<svg preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 583 95"
class="absolute left-0 w-full block" style="height: 95px; top: -94px;">
<polygon points="-30,95 583,95 583,65" class="text-pink-600 fill-current"></polygon>
</svg>
<h4 class="text-xl font-bold text-white">
Donate Your Medicines
</h4>
<p class="text-md font-light mt-2 text-white">
You can help the people by donating the extra medicines which you don't need
anymore. Since it is going directly to the people who need it, we hope and request
you to donate medicines which are safe to consume, have not expired and can cause a
positive impact on the lives of innumerable people.
</p>
</blockquote>
</div>
</div>
</div>
</div>
</section>
<section class="relative py-20">
<div class="bottom-auto top-0 left-0 right-0 w-full absolute pointer-events-none overflow-hidden -mt-20"
style="height: 80px; transform: translateZ(0px);">
<svg class="absolute bottom-0 overflow-hidden" xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none" version="1.1" viewBox="0 0 2560 100" x="0" y="0">
<polygon class="text-white fill-current" points="2560 0 2560 100 0 100"></polygon>
</svg>
</div>
<div class="container mx-auto px-4" id="sell">
<div class="items-center flex flex-wrap">
<div class="w-full md:w-4/12 ml-auto mr-auto px-4">
<div
class="relative flex flex-col min-w-0 break-words bg-white w-full mb-6 shadow-lg rounded-lg bg-pink-600">
<img alt="..."
src="https://images.unsplash.com/photo-1583088580067-16d1109aeacb?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1051&q=80"
class="w-full align-middle rounded-t-lg" />
<blockquote class="relative p-8 mb-4">
<svg preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 583 95"
class="absolute left-0 w-full block" style="height: 95px; top: -94px;">
<polygon points="-30,95 583,95 583,65" class="text-pink-600 fill-current"></polygon>
</svg>
<h4 class="text-xl font-bold text-white">
Sell at half the price
</h4>
<p class="text-md font-light mt-2 text-white">
We only allow verified and licensed pharmacists to sell their medicines here. Since
this is to help the people in need, we allow sales at 50% of the original prices so
as to keep both pharmacists as well as the people in need, satisfied. We hope and
request the pharmacists to make sure all the medicines are fresh and usable so that
it can help people who use them.
</p>
</blockquote>
</div>
</div>
<div class="w-full md:w-5/12 ml-auto mr-auto px-4">
<div class="md:pr-12">
<div
class="text-pink-600 p-3 text-center inline-flex items-center justify-center w-16 h-16 mb-6 shadow-lg rounded-full bg-pink-300">
<i class="fas fa-notes-medical text-xl"></i>
</div>
<h3 class="text-3xl font-semibold">Sell at lesser prices.</h3>
<ul class="list-none mt-6">
<li class="py-2">
<div class="flex items-center">
<div>
<span
class="text-xs font-semibold inline-block py-1 px-2 uppercase rounded-full text-pink-600 bg-pink-200 mr-3"><i
class="fas fa-clipboard-check"></i></span>
</div>
<div>
<h4 class="text-gray-600">
Only for verified Pharmacists
</h4>
</div>
</div>
</li>
</ul>
<form class="seller-form">
<p class="text-lg font-light leading-relaxed mt-4 mb-4 text-gray-700">
<label class="block uppercase text-gray-700 text-xs font-bold mb-2"
for="full-name">Business
Name</label><input type="text" id="bname"
class="px-3 py-3 placeholder-gray-400 text-gray-700 rounded text-sm shadow border appearance-none focus:outline-none focus:shadow-outline w-full"
placeholder="Name of your place of work"
style="transition: all 0.15s ease 0s;" />
</p>
<p class="text-lg font-light leading-relaxed mt-0 mb-4 text-gray-700">
<label class="block uppercase text-gray-700 text-xs font-bold mb-2"
for="email">License
ID</label><input type="text" id="license"
class="px-3 py-3 placeholder-gray-400 text-gray-700 border appearance-none rounded text-sm shadow focus:outline-none focus:shadow-outline w-full"
placeholder="Your Business License" style="transition: all 0.15s ease 0s;" />
</p>
<p class="text-lg font-light leading-relaxed mt-0 mb-4 text-gray-700">
<label class="block uppercase text-gray-700 text-xs font-bold mb-2"
for="email">Contact
Details</label><input type="text" id="contact"
class="px-3 py-3 placeholder-gray-400 text-gray-700 border appearance-none rounded text-sm shadow focus:outline-none focus:shadow-outline w-full"
placeholder="Your Email/Phone number" style="transition: all 0.15s ease 0s;" />
</p>
<p class="text-lg font-light leading-relaxed mt-0 mb-4 text-gray-700">
<label class="block uppercase text-gray-700 text-xs font-bold mb-2"
for="email">Locality</label><input type="text" id="blocality"
class="px-3 py-3 placeholder-gray-400 text-gray-700 border appearance-none rounded text-sm shadow focus:outline-none focus:shadow-outline w-full"
placeholder="Your Locality Name" style="transition: all 0.15s ease 0s;" />
</p>
<p class="text-lg font-light leading-relaxed mt-0 mb-4 text-gray-700">
<label class="block uppercase text-gray-700 text-xs font-bold mb-2"
for="email">Medicine
Name</label><input type="text" id="bmedname"
class="px-3 py-3 placeholder-gray-400 text-gray-700 border appearance-none rounded text-sm shadow focus:outline-none focus:shadow-outline w-full"
placeholder="Name of the medicine" style="transition: all 0.15s ease 0s;" />
</p>
<p class="text-lg font-light leading-relaxed mt-0 mb-4 text-gray-700">
<label class="block uppercase text-gray-700 text-xs font-bold mb-2"
for="email">Medicine
Description & Price</label><input type="text" id="bmedprice"
class="px-3 py-3 placeholder-gray-400 text-gray-700 border appearance-none rounded text-sm shadow focus:outline-none focus:shadow-outline w-full"
placeholder="Quantity and unit of medicines along with price"
style="transition: all 0.15s ease 0s;" />
</p>
<div class="text-center mt-6 inline-flex mb-6">
<button
class="bg-gray-800 text-white active:bg-gray-700 text-sm font-bold uppercase px-6 py-3 rounded shadow hover:shadow-lg outline-none focus:outline-none mr-1 mb-1"
type="submit" style="transition: all 0.15s ease 0s;">
Submit
</button>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<section class="pt-20 pb-48" id="about">
<div class="container mx-auto px-4">
<div class="flex flex-wrap justify-center text-center mb-24">
<div class="w-full lg:w-6/12 px-4">
<h2 class="text-4xl font-semibold">About Us</h2>
<p class="text-lg leading-relaxed m-4 text-gray-600">
The best care starts with awareness and information. We are trying to save medicines
from being wasted and instead ensure they reach the people who are in need of it. It is
our modest effort to create a user friendly platform so as to ease this process.
</p>
</div>
</div>
<div class="flex flex-wrap">
<div class="w-full md:w-6/12 lg:w-3/12 lg:mb-0 mb-12 px-4">
</div>
<div class="w-full md:w-6/12 lg:w-3/12 lg:mb-0 mb-12 px-4">
<div class="px-6">
<img alt="..." src="./assets/img/ayush.jpeg"
class="shadow-lg rounded-full max-w-full mx-auto" style="max-width: 120px;" />
<div class="pt-6 text-center">
<h5 class="text-xl font-bold">Ayush Goyal</h5>
<p class="mt-1 text-sm text-gray-500 uppercase font-semibold">
Web Developer
</p>
<div class="mt-6">
<button onclick="window.open('https://www.github.com/aiqqia','_blank')"
class="bg-gray-800 text-white w-8 h-8 rounded-full outline-none focus:outline-none mr-1 mb-1"
type="button">
<i class="fab fa-github"></i></button><button
onclick="window.open('https://www.linkedin.com/in/aiqqia','_blank')"
class="bg-blue-600 text-white w-8 h-8 rounded-full outline-none focus:outline-none mr-1 mb-1"
type="button">
<i class="fab fa-linkedin-in"></i>
</button>
</div>
</div>
</div>
</div>
<div class="w-full md:w-6/12 lg:w-3/12 lg:mb-0 mb-12 px-4">
<div class="px-6">
<img alt="..." src="./assets/img/anubhav.jpeg"
class="shadow-lg rounded-full max-w-full mx-auto" style="max-width: 120px;" />
<div class="pt-6 text-center">
<h5 class="text-xl font-bold">Anubhav Bagri</h5>
<p class="mt-1 text-sm text-gray-500 uppercase font-semibold">
Developer, Designer
</p>
<div class="mt-6">
<button onclick="window.open('https://www.github.com/anubhavbagri','_blank')"
class="bg-gray-800 text-white w-8 h-8 rounded-full outline-none focus:outline-none mr-1 mb-1"
type="button">
<i class="fab fa-github"></i></button><button
onclick="window.open('https://www.linkedin.com/in/anubhavbagri','_blank')"
class="bg-blue-600 text-white w-8 h-8 rounded-full outline-none focus:outline-none mr-1 mb-1"
type="button">
<i class="fab fa-linkedin-in"></i></button><button
onclick="window.open('https://www.behance.net/anubhavbagri','_blank')"
class="bg-red-600 text-white w-8 h-8 rounded-full outline-none focus:outline-none mr-1 mb-1"
type="button">
<i class="fab fa-behance"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="pb-20 relative block bg-gray-900">
<div class="bottom-auto top-0 left-0 right-0 w-full absolute pointer-events-none overflow-hidden -mt-20"
style="height: 80px; transform: translateZ(0px);">
<svg class="absolute bottom-0 overflow-hidden" xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none" version="1.1" viewBox="0 0 2560 100" x="0" y="0">
<polygon class="text-gray-900 fill-current" points="2560 0 2560 100 0 100"></polygon>
</svg>
</div>
<div class="container mx-auto px-4 lg:pt-24 lg:pb-64">
<div class="flex flex-wrap text-center justify-center">
<div class="w-full lg:w-6/12 px-4">
<h2 class="text-4xl font-semibold text-white">Contact Us</h2>
<p class="text-lg leading-relaxed mt-4 mb-4 text-gray-500">
We want to improve and deliver best quality service. Do let us know if we can help or
improve in any way. We will get back back to you at the earliest.
</p>
</div>
</div>
</div>
</section>
<section class="relative block py-24 lg:pt-0 bg-gray-900">
<div class="container mx-auto px-4">
<div class="flex flex-wrap justify-center lg:-mt-64 -mt-48">
<div class="w-full lg:w-6/12 px-4">
<div
class="relative flex flex-col min-w-0 break-words w-full mb-6 shadow-lg rounded-lg bg-gray-300">
<div class="flex-auto p-5 lg:p-10">
<h4 class="text-2xl font-semibold"> Complete this form and we will get back to you in 24
hours.</h4>
<form class="contact-form">
<div class="relative w-full mb-3 mt-8">
<label class="block uppercase text-gray-700 text-xs font-bold mb-2"
for="full-name">Full Name</label><input type="text" id="fullname"
class="px-3 py-3 placeholder-gray-400 text-gray-700 bg-white rounded text-sm shadow focus:outline-none focus:shadow-outline w-full"
placeholder="Full Name" style="transition: all 0.15s ease 0s;" />
</div>
<div class="relative w-full mb-3">
<label class="block uppercase text-gray-700 text-xs font-bold mb-2"
for="email">Email</label><input type="email" id="emailid"
class="px-3 py-3 placeholder-gray-400 text-gray-700 bg-white rounded text-sm shadow focus:outline-none focus:shadow-outline w-full"
placeholder="Email" style="transition: all 0.15s ease 0s;" />
</div>
<div class="relative w-full mb-3">
<label class="block uppercase text-gray-700 text-xs font-bold mb-2"
for="message">Message</label><textarea rows="4" cols="80" id="message"
class="px-3 py-3 placeholder-gray-400 text-gray-700 bg-white rounded text-sm shadow focus:outline-none focus:shadow-outline w-full"
placeholder="Type a message..." style="resize: none"></textarea>
</div>
<div class="text-center mt-6">
<button
class="bg-gray-900 text-white active:bg-gray-700 text-sm font-bold uppercase px-6 py-3 rounded shadow hover:shadow-lg outline-none focus:outline-none mr-1 mb-1"
type="submit" style="transition: all 0.15s ease 0s;">
Send Message
</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<footer class="relative bg-gray-300 pt-8 pb-6">
<div class="bottom-auto top-0 left-0 right-0 w-full absolute pointer-events-none overflow-hidden -mt-20"
style="height: 80px; transform: translateZ(0px);">
<svg class="absolute bottom-0 overflow-hidden" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"
version="1.1" viewBox="0 0 2560 100" x="0" y="0">
<polygon class="text-gray-300 fill-current" points="2560 0 2560 100 0 100"></polygon>
</svg>
</div>
<div class="container mx-auto px-4">
<div class="flex flex-wrap">
<div class="w-full lg:w-6/12 px-4">
<h4 class="text-3xl font-semibold">Let's keep in touch!</h4>
<h5 class="text-lg mt-0 mb-2 text-gray-700">
Find us on any of these platforms.
</h5>
<div class="mt-6">
<button
class="bg-white text-blue-400 shadow-lg font-normal h-10 w-10 items-center justify-center align-center rounded-full outline-none focus:outline-none mr-2 p-3"
type="button">
<i class="flex fab fa-twitter"></i></button><button
class="bg-white text-blue-500 shadow-lg font-normal h-10 w-10 items-center justify-center align-center rounded-full outline-none focus:outline-none mr-2 p-3"
type="button">
<i class="flex fab fa-facebook-square"></i></button><button
class="bg-white text-blue-600 shadow-lg font-normal h-10 w-10 items-center justify-center align-center rounded-full outline-none focus:outline-none mr-2 p-3"
type="button">
<i class="flex fab fa-linkedin-in"></i></button><button
onclick="window.open('https://github.com/aiqqia/Med-Aid','_blank')"
class="bg-white text-gray-900 shadow-lg font-normal h-10 w-10 items-center justify-center align-center rounded-full outline-none focus:outline-none mr-2 p-3"
type="button">
<i class="flex fab fa-github"></i>
</button>
</div>
</div>
<div class="w-full lg:w-6/12 px-4">
<div class="flex flex-wrap items-top mb-6">
<div class="w-full lg:w-4/12 px-4 ml-auto">
</div>
<!-- <div class="w-full lg:w-4/12 px-4">
</div> -->
</div>
</div>
</div>
<hr class="my-6 border-gray-400" />
<div class="flex flex-wrap items-center md:justify-between justify-center">
<div class="w-full md:w-4/12 px-4 mx-auto text-center">
<div class="text-sm text-gray-600 font-semibold py-1">
Copyright © 2020 Med-Aid -
<a class="text-gray-700 hover:text-gray-900">@med-aid</a>.
</div>
</div>
</div>
</div>
</footer>
<script src="https://www.gstatic.com/firebasejs/7.19.1/firebase.js"></script>
<script>
// Your web app's Firebase configuration
var firebaseConfig = {
apiKey: "AIzaSyD5t7BJc3TTij2Qk51iFAKRAMWk6jBWi9k",
authDomain: "the-med-aid.firebaseapp.com",
databaseURL: "https://the-med-aid.firebaseio.com",
projectId: "the-med-aid",
storageBucket: "the-med-aid.appspot.com",
messagingSenderId: "639992295722",
appId: "1:639992295722:web:deff5079a3cfa56aeaae53"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
</script>
<script src="js/donate.js" type="text/javascript"></script>
<script src="https://www.gstatic.com/firebasejs/7.19.1/firebase.js"></script>
<script src="js/sell.js" type="text/javascript"></script>
<script src="https://www.gstatic.com/firebasejs/7.19.1/firebase.js"></script>
<script src="js/contact.js" type="text/javascript"></script>
</body>
<script>
function toggleNavbar(collapseID) {
document.getElementById(collapseID).classList.toggle("hidden");
document.getElementById(collapseID).classList.toggle("block");
}
</script>
</html>