-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
549 lines (472 loc) · 24.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>PharmaBooks</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/11.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<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">
<!-- Calendly link widget begin -->
<link href="https://assets.calendly.com/assets/external/widget.css" rel="stylesheet">
<script src="https://assets.calendly.com/assets/external/widget.js" type="text/javascript" async></script>
<!-- Vendor CSS Files -->
<link href="assets/vendor/fontawesome-free/css/all.min.css" rel="stylesheet">
<link href="assets/vendor/animate.css/animate.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- =======================================================
* Template Name: Medilab - v4.9.1
* Template URL: https://bootstrapmade.com/medilab-free-medical-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<script>
function submitForm() {
// Get form data
const email = document.getElementById("femail").value;
// Serialize data to JSON
const data = {
email: email,
};
const jsonData = JSON.stringify(data);
// Send data to API
const xhr = new XMLHttpRequest();
xhr.open("POST", "http://localhost:49555/api/pharmacy/v1/news-letter");
xhr.setRequestHeader("Content-Type", "application/json");
xhr.onreadystatechange = function() {
if (xhr.readyState === 4) {
console.log(xhr.responseText);
}
};
xhr.send(jsonData);
}
function submitForm2() {
// Get form data
const email = document.getElementById("femail1").value;
const subject = document.getElementById("fsubject").value;
const name = document.getElementById("fname").value;
const message = document.getElementById("fmessage").value;
// Serialize data to JSON
const data = {
email: email,
subject:subject,
message:message,
name:name
};
const jsonData = JSON.stringify(data);
// Send data to API
const xhr = new XMLHttpRequest();
xhr.open("POST", "http://localhost:49555/api/pharmacy/v1/feedback-api");
xhr.setRequestHeader("Content-Type", "application/json");
xhr.onreadystatechange = function() {
if (xhr.readyState === 4) {
console.log(xhr.responseText);
}
};
xhr.send(jsonData);
}
</script>
<body>
<!-- ======= Top Bar ======= -->
<div id="topbar" class="d-flex align-items-center fixed-top">
<div class="container d-flex justify-content-between">
<div class="contact-info d-flex align-items-center">
<i class="bi bi-envelope"></i> <a href="mailto:[email protected]">[email protected]</a>
<i class="bi bi-phone"></i> +2348067643479
</div>
<div class="d-none d-lg-flex social-links align-items-center">
<a href="https://twitter.com/bitshishq" class="twitter" target="_blank"><i class="bi bi-twitter"></i></a>
<a href="https://web.facebook.com/MyLikitaNG" target="_blank" class="facebook"><i class="bi bi-facebook"></i></a>
<a href="https://www.instagram.com/mylikitang" class="instagram" target="_blank"><i class="bi bi-instagram"></i></a>
<a href="https://www.linkedin.com/company/mylikita" class="linkedin" target="_blank"><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top">
<div class="container d-flex align-items-center">
<h1 class="logo me-auto">
<!-- <a href="index.html">Medilab</a> -->
<img src="./assets/img/6.png" class=""/>
</h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html" class="logo me-auto"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>-->
<nav id="navbar" class="navbar order-last order-lg-0">
<ul>
<li><a class="nav-link scrollto " href="#hero">Home</a></li>
<li><a class="nav-link scrollto" href="#about">About Us</a></li>
<li><a class="nav-link scrollto" href="#services">Features</a></li>
<li><a class="nav-link scrollto" href="#testimonials">Testimonials</a></li>
<li><a class="nav-link scrollto" href="#contact">Contact Us</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
<!-- <a href="" >Schedule time with me</a> -->
<!-- Calendly link widget end -->
<!-- <a href="" onclick="Calendly.initPopupWidget({url: 'https://calendly.com/8790fahadado/pharmabooks_demo'});return false;">Schedule time with me</a> -->
<a href="#" class="appointment-btn scrollto a3-button2" onclick="Calendly.initPopupWidget({url: 'https://calendly.com/8790fahadado/pharmabooks_demo'});return false;"><span class="d-none d-md-inline" >Schedule a</span> Demo</a>
<!-- <a href="#" class="appointment-btn scrollto a3-button2" onclick="Calendly.initPopupWidget({url: 'https://calendly.com/8790fahadado/pharmabooks_demo'});return false;">Schedule a Demo</a> -->
<!-- <a href="" onclick="Calendly.initPopupWidget({url: 'https://calendly.com/8790fahadado/pharmabooks-demo'});return false;">Schedule time with me</a> -->
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex align-items-center">
<div class="container">
<h1 class="text-white">Welcome to PharmaBooks</h1>
<h2 class="text-white">Manage and track your Phamacy inventory at your fingertips</h2>
<a href="#" class="btn-get-started scrollto a3-button2" onclick="Calendly.initPopupWidget({url: 'https://calendly.com/8790fahadado/pharmabooks_demo'});return false;">Schedule a Demo</a>
</div>
</section><!-- End Hero -->
<main id="main">
<!-- ======= Why Us Section ======= -->
<section id="why-us" class="why-us">
<div class="container">
<div class="row">
<div class="col-lg-4 d-flex align-items-stretch">
<div class="content">
<h3>Why Choose PharmBooks?</h3>
<p>
We’re all about great retail and empowering businesses to
grow with our omnichannel solutions. Most importantly, we
know that when users are happy with their experience with
your brand, we’ve done our job correctly. We’re constantly
innovating and iterating to make sure the solutions and
services we deliver exceed your expectations.
</p>
<div class="text-center">
<a href="#" class="more-btn">Learn More <i class="bx bx-chevron-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-8 d-flex align-items-stretch">
<div class="icon-boxes d-flex flex-column justify-content-center">
<div class="row">
<div class="col-xl-4 d-flex align-items-stretch">
<div class="icon-box mt-4 mt-xl-0">
<i class="bx bx-receipt"></i>
<h4>Easy Inventory Management</h4>
<p>PharmaBooks aids with simple inventory management by simplifying the inventory monitoring procedure and lowering mistakes brought on by manual inventory tracking.</p>
</div>
</div>
<div class="col-xl-4 d-flex align-items-stretch">
<div class="icon-box mt-4 mt-xl-0">
<i class="bx bx-cube-alt"></i>
<h4>Safe and Secured</h4>
<p>Pharmabooks provides a safe and secure inventory tracking process, ensuring regulatory compliance for controlled substances and preventing inventory loss due to theft or human error.</p>
</div>
</div>
<div class="col-xl-4 d-flex align-items-stretch">
<div class="icon-box mt-4 mt-xl-0">
<i class="bx bx-images"></i>
<h4>24/7 Help Support</h4>
<p>PharmaBooks often comes with 24/7 help support, providing pharmacies with assistance and troubleshooting whenever needed to ensure smooth inventory management.</p>
</div>
</div>
</div>
</div><!-- End .content-->
</div>
</div>
</div>
</section><!-- End Why Us Section -->
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container-fluid">
<div class="row">
<div class="col-xl-5 col-lg-6 video-box d-flex justify-content-center align-items-stretch position-relative">
<!-- <a href="https://www.youtube.com/watch?v=jDDaplaOz7Q" class="glightbox play-btn mb-4"></a> -->
<img src="./assets/img/about.png" class="about_img"/>
</div>
<div class="col-xl-7 col-lg-6 icon-boxes d-flex flex-column align-items-stretch justify-content-center py-5 px-lg-5">
<div class="section-title">
<h2>About PharmaBooks</h2>
<!-- <p>From our clients</p> -->
</div>
<div>
<div class="row">
<div class="col-lg-2"></div>
<div class="col-lg-8 text-center">
We’re all about great retail and empowering businesses to
grow with our omnichannel solutions. Most importantly, we
know that when users are happy with their experience with
your brand, we’ve done our job correctly. We’re constantly
innovating and iterating to make sure the solutions and
services we deliver exceed your expectations.
<div class="" style="margin-top: 50px;">
<a href="#about" class="appointment-btn scrollto"><span class="d-none d-md-inline" onclick="Calendly.initPopupWidget({url: 'https://calendly.com/8790fahadado/pharmabooks-demo'});return false;">Schedule a</span> Demo</a>
</div>
</div>
<div class="col-lg-2"></div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- ======= Services Section ======= -->
<section id="services" class="services">
<div class="container">
<div class="section-title">
<h2>Key Features</h2>
<!-- <p>From our clients</p> -->
</div>
<div class="row">
<div class="col-lg-3 col-md-6 d-flex align-items-stretch">
<div class="icon-box">
<div class="icon"><img src="./assets/img/dashboard.svg" class="features_image"/></div>
<h4><a href="">Dashboard</a></h4>
<!-- <p>Hanan Pharmacetical NIG LTD</p> -->
<p>
PharmaBooks offers a user-friendly dashboard that provides pharmacies with real-time data on inventory levels, expirations, and restocking needs, enabling them to make informed decisions about their inventory management.
</p>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch mt-4 mt-md-0">
<div class="icon-box">
<div class="icon"><img src="./assets/img/bincard.svg" class="features_image"/></div>
<h4><a href="">Bin Card</a></h4>
<!-- <p>Ma'een Pharmacetical NIG LTD</p> -->
<p>
Pharmabooks e allows pharmacies to track inventory levels at a granular level by providing real-time information on the exact quantity of each product in stock, enabling efficient and accurate inventory management.
</p>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch mt-4 mt-lg-0">
<div class="icon-box">
<div class="icon"><img src="./assets/img/notification.svg" class="features_image"/></div>
<h4><a href="">Notifications</a></h4>
<!-- <p>Hanan Pharmacetical NIG LTD</p> -->
<p>
Pharmabooks sends automatic notifications when inventory levels reach a certain threshold, enabling pharmacies to restock products in a timely manner and prevent stockouts, ensuring a seamless inventory management process.
</p>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch mt-4 mt-lg-0">
<div class="icon-box">
<div class="icon"><img src="./assets/img/search.svg" class="features_image"/></div>
<h4><a href="">Drug Search</a></h4>
<!-- <p>Hanan Pharmacetical NIG LTD</p> -->
<p>
PharmaBooks allows pharmacies to quickly locate specific products in their inventory, saving time and improving efficiency in inventory management.
</p>
</div>
</div>
</div>
</div>
</section><!-- End Services Section -->
</section><!-- End Doctors Section -->
<!-- ======= Testimonials Section ======= -->
<section id="testimonials" class="testimonials">
<div class="container">
<div class="section-title">
<h2>Testimonials</h2>
<!-- <p>From our clients</p> -->
</div>
<div class="testimonials-slider swiper" data-aos="fade-up" data-aos-delay="100">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item">
<img src="assets/img/remedix.jpeg" class="testimonial-img" alt="" />
<h3>Rmedix Pharmacy</h3>
<h4>CEO & Founder</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
The PharmBook System has made a tremendous difference in the way we
do business. We’re able to solve both internal and external issues
very quickly due to electronic signature capture. The inventory
control feature is a fantastic tool. We never run out of product,
and we can see clearly how a certain area of the store is doing and
respond accordingly. Our inventory system had no customized features
for pharmacies. Plus, it was from a big corporation; we felt like a
tiny blip on their screen. The PharmBook crew is friendly and timely
in working with us to solve any issues that arise. And they are very
responsive when we have feedback for them about the software.
PharmBook has helped us to streamline things and to be more
efficient. For us, greater efficiency means greater profits.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item">
<img
src="./assets/img/rashmedix.png"
class="testimonial-img"
alt=""
/>
<h3>Rashmedix Pharmacy</h3>
<h4>CEO & Founder</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Rashmedix Pharmacy couldn’t run its business as successfully without
PharmBook. We use the system to manage our entire inventory. If
products aren’t selling, we know it, and can move them out and
something else in. With PharmBook, we have total control over
everything in the store from cash management and employee
accountability to merchandising and promotions. The deep knowledge
the system provides enables us to make informed decisions quickly,
and to be more profitable as a result. The system pays for itself in
the profits gained. The support team at PharmBook is made up of
incredibly bright individuals with great people skills.
Unequivocally, the PharmBook service personnel listen, resolve
issues, and best of all – they can talk to any one of our employees.
With an PharmBook system, you will immediately have the tools with
which to make smarter, informed business decisions.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div>
</div>
</div>
<!-- End testimonial item -->
</div> -->
</section><!-- End Testimonials Section -->
\
<!-- End Gallery Section -->
<!-- ======= Contact Section ======= -->
<section id="contact" class="contact">
<div class="container">
<div class="section-title">
<h2>Contact</h2>
<p>We will be honored if you contact us</p>
</div>
</div>
<div class="container">
<div class="row mt-5">
<div class="col-lg-4">
<div class="info">
<div class="address">
<i class="bi bi-geo-alt"></i>
<h4>Location:</h4>
<p>First floor Affrican Alliance Building Airport Road Kano,Nigeria</p>
</div>
<div class="email">
<i class="bi bi-envelope"></i>
<h4>Email:</h4>
<p>[email protected]</p>
</div>
<div class="phone">
<i class="bi bi-phone"></i>
<h4>Call:</h4>
<p>+23480-67643479</p>
</div>
</div>
</div>
<div class="col-lg-8 mt-5 mt-lg-0">
<form class="php-email-form" >
<div class="row">
<div class="col-md-6 form-group">
<input type="text" name="name" class="form-control" id="fname" placeholder="Your Name" required>
</div>
<div class="col-md-6 form-group mt-3 mt-md-0">
<input type="email" class="form-control" name="email" id="femail1" placeholder="Your Email" required>
</div>
</div>
<div class="form-group mt-3">
<input type="text" class="form-control" name="subject" id="fsubject" placeholder="Subject" required>
</div>
<div class="form-group mt-3">
<textarea class="form-control" name="fmessage" rows="5" placeholder="Message" required></textarea>
</div>
<div class="text-center"><button style="background: #1977cc;color: #fff;border-radius: 50px;padding: 8px 12px;" onclick="submitForm2()" type="button">Send Message</button></div>
</form>
</div>
</div>
</div>
</section><!-- End Contact Section -->
</main><!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6 footer-contact">
<h3>PharmaBooks</h3>
<p>
First floor Affrican Alliance Building <br>
Airport Road, Kano<br>
Nigeria <br><br>
<strong>Phone:</strong> +23480-67643479<br>
<strong>Email:</strong>[email protected]<br>
</p>
</div>
<div class="col-lg-2 col-md-6 footer-links">
<!-- <h4>Useful Links</h4>
<ul>
<li><i class="bx bx-chevron-right"></i> <a href="#">Home</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="#">About us</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="#">Services</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="#">Terms of service</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="#">Privacy policy</a></li>
</ul> -->
</div>
<div class="col-lg-3 col-md-6 footer-links">
<!-- <h4>Our Services</h4>
<ul>
<li><i class="bx bx-chevron-right"></i> <a href="#">Web Design</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="#">Web Development</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="#">Product Management</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="#">Marketing</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="#">Graphic Design</a></li>
</ul> -->
</div>
<div class="col-lg-4 col-md-6 footer-newsletter">
<h4>Join Our Newsletter</h4>
<!-- <p>Tamen quem nulla quae legam multos aute sint culpa legam noster magna</p> -->
<form >
<input type="email" name="email" id="femail" class="sub_input" required ><button style="
background: #1977cc;
color: #fff;
border-radius: 50px;padding: 8px 12px;" onclick="submitForm()" type="button" >Subscribe</button>
</form>
</div>
</div>
</div>
</div>
<div class="container d-md-flex py-4">
<div class="me-md-auto text-center text-md-start">
<div class="copyright">
<strong><span>PharmaBooks</span></strong> Powered by <a href="https://mylikita.clinic" target="_blank">MyLikita Health</a>
</div>
<div class="credits">
<!-- All the links in the footer should remain intact. -->
<!-- You can delete the links only if you purchased the pro version. -->
<!-- Licensing information: https://bootstrapmade.com/license/ -->
<!-- Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/medilab-free-medical-bootstrap-theme/ -->
<!-- Designed by <a href="https://bootstrapmade.com/">BootstrapMade</a> -->
</div>
</div>
<div class="social-links text-center text-md-right pt-3 pt-md-0">
<a href="https://twitter.com/bitshishq" class="twitter" target="_blank"><i class="bx bxl-twitter"></i></a>
<a href="https://web.facebook.com/MyLikitaNG" target="_blank" class="facebook"><i class="bx bxl-facebook"></i></a>
<a href="https://www.instagram.com/mylikitang" class="instagram" target="_blank"><i class="bx bxl-instagram"></i></a>
<a href="https://www.linkedin.com/company/mylikita" class="linkedin" target="_blank"><i class="bx bxl-linkedin"></i></a>
</div>
</div>
</footer><!-- End Footer -->
<div id="preloader"></div>
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/purecounter/purecounter_vanilla.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>