├── .env.example ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ChatApp ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_initial.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── LICENSE ├── README.md ├── api ├── __init__.py ├── serializers.py ├── urls.py └── views.py ├── db.sqlite3 ├── doctor ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── middleware.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_initial.py │ ├── 0003_remove_doctor_information_service.py │ ├── 0004_alter_appointment_date_alter_appointment_time.py │ ├── 0005_alter_appointment_date.py │ ├── 0006_test_specimen.py │ ├── 0007_remove_test_delivery_date_report_other_information.py │ ├── 0008_doctor_information_nid_and_more.py │ ├── 0009_prescription_extra_information.py │ ├── 0009_prescription_extra_information_and_more.py │ ├── 0010_alter_doctor_information_hospital_name.py │ ├── 0011_alter_prescription_patient_alter_report_doctor.py │ ├── 0012_merge_20220909_1257.py │ ├── 0013_prescription_relation_with_meal_perscription_test_and_more.py │ ├── 0014_rename_days_perscription_medicine_duration_and_more.py │ ├── 0015_test_cart.py │ ├── 0016_test_order.py │ ├── 0017_alter_test_cart_item.py │ ├── 0017_remove_perscription_test_prescription.py │ ├── 0018_test_info_perscription_test_prescription.py │ ├── 0019_delete_test_info.py │ ├── 0020_merge_0017_alter_test_cart_item_0019_delete_test_info.py │ ├── 0020_rename_perscription_medicine_prescription_medicine_and_more.py │ ├── 0021_doctor_information_login_status.py │ ├── 0021_test_cart_test_name.py │ ├── 0022_prescription_create_date.py │ ├── 0022_remove_doctor_information_login_status.py │ ├── 0022_remove_test_cart_test_name_test_cart_name.py │ ├── 0023_merge_20220914_1911.py │ ├── 0024_merge_20220914_2334.py │ ├── 0025_prescription_test_info_id.py │ ├── 0026_remove_prescription_test_info_id_and_more.py │ ├── 0027_alter_prescription_test_test_info_id.py │ ├── 0027_doctor_review.py │ ├── 0027_remove_test_cart_quantity.py │ ├── 0028_prescription_test_test_info_price.py │ ├── 0029_prescription_test_test_info_pay_status.py │ ├── 0030_alter_prescription_test_test_description.py │ ├── 0030_merge_20220915_1900.py │ ├── 0031_alter_prescription_test_test_description.py │ ├── 0032_merge_20220915_2039.py │ ├── 0032_merge_20220915_2055.py │ ├── 0032_rename_test_cart_testcart_and_more.py │ ├── 0033_merge_0027_doctor_review_0032_merge_20220915_2039.py │ ├── 0033_merge_20220915_2105.py │ ├── 0034_merge_20220915_2122.py │ ├── 0034_merge_20220915_2125.py │ ├── 0035_alter_prescription_test_test_info_id.py │ ├── 0036_merge_20220915_2130.py │ ├── 0036_merge_20220916_0205.py │ ├── 0036_merge_20220916_1041.py │ ├── 0037_merge_20220916_1045.py │ ├── 0038_merge_20220916_1106.py │ ├── 0038_merge_20220916_1159.py │ ├── 0038_merge_20220917_0933.py │ ├── 0039_merge_20220917_1247.py │ ├── 0040_merge_20220917_1537.py │ ├── 0040_merge_20220917_1746.py │ ├── 0040_merge_20220917_1855.py │ ├── 0040_merge_20220917_1856.py │ ├── 0041_merge_20220917_1905.py │ ├── 0042_merge_20220917_1959.py │ ├── 0043_merge_20220918_0018.py │ ├── 0044_appointment_message.py │ └── __init__.py ├── models.py ├── pdf.py ├── signals.py ├── tests.py ├── uitls.py ├── urls.py └── views.py ├── healthstack ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── heath_doc ├── docs │ ├── Lab_worker.md │ ├── Pharmacist.md │ ├── admin │ │ ├── Screenshot (225).png │ │ ├── Screenshot (226).png │ │ ├── Screenshot (227).png │ │ ├── Screenshot (228).png │ │ ├── Screenshot (229).png │ │ ├── Screenshot (230).png │ │ ├── Screenshot (231).png │ │ ├── Screenshot (232).png │ │ ├── Screenshot (233).png │ │ ├── Screenshot (234).png │ │ ├── Screenshot (235).png │ │ └── Screenshot (236).png │ ├── admins │ │ ├── add hospital info.png │ │ ├── add labratory.png │ │ ├── add pharmacist.png │ │ ├── doctor-list.png │ │ ├── edit hospital information.png │ │ ├── view labratory.png │ │ └── view pharmacist.png │ ├── doctor.md │ ├── doctor │ │ ├── Screenshot (218).png │ │ ├── Screenshot (219).png │ │ ├── Screenshot (220).png │ │ ├── Screenshot (221).png │ │ ├── Screenshot (222).png │ │ ├── Screenshot (223).png │ │ └── Screenshot (224).png │ ├── home │ │ ├── Screenshot (201).png │ │ ├── Screenshot (202).png │ │ ├── Screenshot (203).png │ │ ├── Screenshot (204).png │ │ ├── Screenshot (205).png │ │ └── Screenshot (206).png │ ├── hospital.md │ ├── hospital_admin.md │ ├── image │ │ └── al-raji.png │ ├── index.md │ ├── lab_worker │ │ ├── Screenshot (237).png │ │ ├── Screenshot (238).png │ │ ├── Screenshot (239).png │ │ └── Screenshot (240).png │ ├── mailttrap │ │ └── Mail_pic.PNG │ ├── page2.md │ ├── patient.md │ ├── patient │ │ ├── Screenshot (207).png │ │ ├── Screenshot (208).png │ │ ├── Screenshot (209).png │ │ ├── Screenshot (210).png │ │ ├── Screenshot (211).png │ │ ├── Screenshot (212).png │ │ ├── Screenshot (213).png │ │ ├── Screenshot (214).png │ │ ├── Screenshot (215).png │ │ ├── Screenshot (216).png │ │ ├── Screenshot (217).png │ │ ├── Screenshot (253).png │ │ ├── Screenshot (254).png │ │ └── Screenshot (256).png │ ├── payment │ │ ├── Screenshot (249).png │ │ ├── Screenshot (250).png │ │ ├── Screenshot (251).png │ │ └── Screenshot (252).png │ ├── pharmacist │ │ ├── Screenshot (242).png │ │ ├── Screenshot (243).png │ │ ├── Screenshot (244).png │ │ └── Screenshot (245).png │ └── pharmacy │ │ ├── Screenshot (242).png │ │ ├── Screenshot (243).png │ │ ├── Screenshot (244).png │ │ ├── Screenshot (245).png │ │ ├── Screenshot (246).png │ │ ├── Screenshot (247).png │ │ └── Screenshot (248).png └── mkdocs.yml ├── hospital ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_patient_login_status.py │ ├── 0003_user_login_status.py │ ├── 0004_alter_user_login_status.py │ └── __init__.py ├── models.py ├── pdf.py ├── pres_pdf.py ├── signals.py ├── tests.py ├── urls.py ├── utils.py └── views.py ├── hospital_admin ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_clinical_laboratory_technician_hospital.py │ ├── 0003_test_information.py │ ├── 0004_alter_test_information_test_price.py │ ├── 0005_admin_information_hospital.py │ └── __init__.py ├── models.py ├── signals.py ├── tests.py ├── urls.py ├── utils.py └── views.py ├── manage.py ├── pharmacy ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_cart_order.py │ ├── 0003_rename_orderid_order_trans_id.py │ ├── 0004_remove_order_paymentid_order_payment_status.py │ └── __init__.py ├── models.py ├── signals.py ├── tests.py ├── urls.py ├── utils.py └── views.py ├── requirements.txt ├── setup.py ├── sslcommerz ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_payment_api_payment_type_alter_payment_appointment.py │ ├── 0003_remove_payment_api_payment_type.py │ ├── 0004_payment_order.py │ ├── 0005_payment_test_order.py │ ├── 0006_payment_prescription.py │ └── __init__.py ├── models.py ├── signals.py ├── tests.py ├── urls.py └── views.py ├── sslcommerz_lib ├── __init__.py └── sslcommerz.py ├── static ├── HealthStack-System │ ├── Outside_assets │ │ ├── css │ │ │ ├── bootstrap-datetimepicker.min.css │ │ │ ├── bootstrap.min.css │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── MaterialIcons-Regular.eot │ │ │ ├── MaterialIcons-Regular.html │ │ │ ├── MaterialIcons-Regular.ttf │ │ │ └── MaterialIcons-Regular.woff │ │ ├── img │ │ │ ├── FullLogo.jpg │ │ │ ├── FullLogo_NoBuffer.jpg │ │ │ ├── FullLogo_Transparent_NoBuffer (1).png │ │ │ ├── FullLogo_Transparent_NoBuffer.png │ │ │ ├── Grayscale_Transparent_NoBuffer.png │ │ │ ├── IconOnly_Transparent_NoBuffer.png │ │ │ ├── LOGO │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ └── 3.png │ │ │ ├── doctors │ │ │ │ ├── doctor-01.jpg │ │ │ │ ├── doctor-02.jpg │ │ │ │ ├── doctor-03.jpg │ │ │ │ ├── doctor-04.jpg │ │ │ │ ├── doctor-05.jpg │ │ │ │ ├── doctor-06.jpg │ │ │ │ ├── doctor-07.jpg │ │ │ │ ├── doctor-08.jpg │ │ │ │ ├── doctor-09.jpg │ │ │ │ ├── doctor-10.jpg │ │ │ │ ├── doctor-11.jpg │ │ │ │ ├── doctor-12.jpg │ │ │ │ ├── doctor-thumb-01.jpg │ │ │ │ ├── doctor-thumb-02.jpg │ │ │ │ ├── doctor-thumb-03.jpg │ │ │ │ ├── doctor-thumb-04.jpg │ │ │ │ ├── doctor-thumb-05.jpg │ │ │ │ ├── doctor-thumb-06.jpg │ │ │ │ ├── doctor-thumb-07.jpg │ │ │ │ ├── doctor-thumb-08.jpg │ │ │ │ ├── doctor-thumb-09.jpg │ │ │ │ └── doctor-thumb-10.jpg │ │ │ ├── favicon.png │ │ │ ├── features │ │ │ │ ├── feature-01.jpg │ │ │ │ ├── feature-02.jpg │ │ │ │ ├── feature-03.jpg │ │ │ │ ├── feature-04.jpg │ │ │ │ ├── feature-05.jpg │ │ │ │ ├── feature-06.jpg │ │ │ │ └── feature.png │ │ │ ├── footer-logo.png │ │ │ ├── footer_logo.png │ │ │ ├── icon-01.png │ │ │ ├── icon-02.png │ │ │ ├── icon-03.png │ │ │ ├── img-01.jpg │ │ │ ├── img-02.jpg │ │ │ ├── img-03.jpg │ │ │ ├── img-04.jpg │ │ │ ├── location.png │ │ │ ├── login-banner.png │ │ │ ├── logo.png │ │ │ ├── patients │ │ │ │ ├── patient.jpg │ │ │ │ ├── patient1.jpg │ │ │ │ ├── patient10.jpg │ │ │ │ ├── patient11.jpg │ │ │ │ ├── patient2.jpg │ │ │ │ ├── patient3.jpg │ │ │ │ ├── patient4.jpg │ │ │ │ ├── patient5.jpg │ │ │ │ ├── patient6.jpg │ │ │ │ ├── patient7.jpg │ │ │ │ ├── patient8.jpg │ │ │ │ └── patient9.jpg │ │ │ ├── search-bg.png │ │ │ ├── search.png │ │ │ ├── specialities │ │ │ │ ├── specialities-01.png │ │ │ │ ├── specialities-02.png │ │ │ │ ├── specialities-03.png │ │ │ │ ├── specialities-04.png │ │ │ │ └── specialities-05.png │ │ │ └── video-call.jpg │ │ ├── js │ │ │ ├── bootstrap-datetimepicker.min.js │ │ │ ├── bootstrap.min.js │ │ │ ├── circle-progress.min.js │ │ │ ├── jquery.min.js │ │ │ ├── moment.min.js │ │ │ ├── popper.min.js │ │ │ ├── profile-settings.js │ │ │ ├── script.js │ │ │ └── slick.js │ │ └── plugins │ │ │ ├── bootstrap-tagsinput │ │ │ ├── css │ │ │ │ └── bootstrap-tagsinput.css │ │ │ └── js │ │ │ │ └── bootstrap-tagsinput.js │ │ │ ├── dropzone │ │ │ ├── dropzone.min.css │ │ │ └── dropzone.min.js │ │ │ ├── fancybox │ │ │ ├── jquery.fancybox.min.css │ │ │ └── jquery.fancybox.min.js │ │ │ ├── fontawesome │ │ │ ├── css │ │ │ │ ├── all.min.css │ │ │ │ └── fontawesome.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.html │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400d41d.eot │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.html │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400d41d.eot │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.html │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900d41d.eot │ │ │ ├── fullcalendar │ │ │ ├── fullcalendar.min.css │ │ │ ├── fullcalendar.min.js │ │ │ └── jquery.fullcalendar.js │ │ │ ├── jquery-ui │ │ │ └── jquery-ui.min.js │ │ │ ├── select2 │ │ │ ├── css │ │ │ │ └── select2.min.css │ │ │ └── js │ │ │ │ └── select2.min.js │ │ │ └── theia-sticky-sidebar │ │ │ ├── ResizeSensor.js │ │ │ └── theia-sticky-sidebar.js │ ├── admin_assets │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ ├── feathericon.min.css │ │ │ ├── font-awesome.min.css │ │ │ ├── select2.min.css │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── MaterialIcons-Regular.eot │ │ │ ├── MaterialIcons-Regular.html │ │ │ ├── MaterialIcons-Regular.ttf │ │ │ ├── MaterialIcons-Regular.woff │ │ │ ├── feathericon.eot │ │ │ ├── feathericon.svg │ │ │ ├── feathericon.ttf │ │ │ ├── feathericon.woff │ │ │ ├── feathericond41d.eot │ │ │ ├── fontawesome-webfont3e6e.eot │ │ │ ├── fontawesome-webfont3e6e.html │ │ │ ├── fontawesome-webfont3e6e.svg │ │ │ ├── fontawesome-webfont3e6e.ttf │ │ │ ├── fontawesome-webfont3e6e.woff │ │ │ └── fontawesome-webfontd41d.eot │ │ ├── img │ │ │ ├── doctors │ │ │ │ ├── doctor-thumb-01.jpg │ │ │ │ ├── doctor-thumb-02.jpg │ │ │ │ ├── doctor-thumb-03.jpg │ │ │ │ ├── doctor-thumb-04.jpg │ │ │ │ ├── doctor-thumb-05.jpg │ │ │ │ ├── doctor-thumb-06.jpg │ │ │ │ ├── doctor-thumb-07.jpg │ │ │ │ ├── doctor-thumb-08.jpg │ │ │ │ ├── doctor-thumb-09.jpg │ │ │ │ └── doctor-thumb-10.jpg │ │ │ ├── favicon.png │ │ │ ├── img-01.jpg │ │ │ ├── logo-small.png │ │ │ ├── logo-white.png │ │ │ ├── logo.png │ │ │ ├── patients │ │ │ │ ├── patient1.jpg │ │ │ │ ├── patient10.jpg │ │ │ │ ├── patient11.jpg │ │ │ │ ├── patient12.jpg │ │ │ │ ├── patient13.jpg │ │ │ │ ├── patient14.jpg │ │ │ │ ├── patient15.jpg │ │ │ │ ├── patient2.jpg │ │ │ │ ├── patient3.jpg │ │ │ │ ├── patient4.jpg │ │ │ │ ├── patient5.jpg │ │ │ │ ├── patient6.jpg │ │ │ │ ├── patient7.jpg │ │ │ │ ├── patient8.jpg │ │ │ │ └── patient9.jpg │ │ │ ├── profiles │ │ │ │ ├── avatar-01.jpg │ │ │ │ ├── avatar-02.jpg │ │ │ │ ├── avatar-03.jpg │ │ │ │ └── avatar-04.jpg │ │ │ └── specialities │ │ │ │ ├── specialities-01.png │ │ │ │ ├── specialities-02.png │ │ │ │ ├── specialities-03.png │ │ │ │ ├── specialities-04.png │ │ │ │ └── specialities-05.png │ │ ├── js │ │ │ ├── bootstrap.min.js │ │ │ ├── chart.morris.js │ │ │ ├── form-validation.js │ │ │ ├── jquery-3.2.1.min.js │ │ │ ├── jquery.maskedinput.min.js │ │ │ ├── mask.js │ │ │ ├── popper.min.js │ │ │ ├── script.js │ │ │ └── select2.min.js │ │ └── plugins │ │ │ ├── datatables │ │ │ ├── datatables.min.css │ │ │ ├── datatables.min.js │ │ │ └── jquery.dataTables.min.js │ │ │ ├── morris │ │ │ ├── morris.css │ │ │ └── morris.min.js │ │ │ ├── raphael │ │ │ └── raphael.min.js │ │ │ └── slimscroll │ │ │ └── jquery.slimscroll.min.js │ ├── css │ │ ├── Normal │ │ │ ├── booking.css │ │ │ ├── bootstrap-datetimepicker.min.css │ │ │ ├── bootstrap.min.css │ │ │ ├── date_dropper.css │ │ │ ├── department.css │ │ │ ├── hospital.css │ │ │ ├── my_style.css │ │ │ ├── search-bg.png │ │ │ ├── search.css │ │ │ ├── search2.css │ │ │ ├── search3.css │ │ │ ├── src │ │ │ │ ├── datedropper.eot │ │ │ │ ├── datedropper.svg │ │ │ │ ├── datedropper.ttf │ │ │ │ ├── datedropper.woff │ │ │ │ └── datedropperd41d.eot │ │ │ ├── style.css │ │ │ └── timedropper.css │ │ ├── admin │ │ │ ├── add-hospital.css │ │ │ ├── add-medicine.css │ │ │ ├── bootstrap.min.css │ │ │ ├── feathericon.min.css │ │ │ ├── font-awesome.min.css │ │ │ ├── pending-doctor-list.css │ │ │ ├── select2.min.css │ │ │ └── style.css │ │ └── pharmacy │ │ │ ├── animate.css │ │ │ ├── aos.css │ │ │ ├── bootstrap-datepicker.css │ │ │ ├── flaticon.css │ │ │ ├── icomoon.css │ │ │ ├── ionicons.min.css │ │ │ ├── jquery.timepicker.css │ │ │ ├── magnific-popup.css │ │ │ ├── open-iconic-bootstrap.min.css │ │ │ ├── owl.carousel.min.css │ │ │ ├── owl.theme.default.min.css │ │ │ ├── owl.video.play.html │ │ │ └── style.css │ ├── images │ │ ├── Normal │ │ │ ├── FullLogo.jpg │ │ │ ├── FullLogo_Transparent_NoBuffer (1).png │ │ │ ├── FullLogo_Transparent_NoBuffer.png │ │ │ ├── Grayscale_Transparent_NoBuffer.png │ │ │ ├── LOGO │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ └── 3.png │ │ │ ├── doctors │ │ │ │ ├── doctor-01.jpg │ │ │ │ ├── doctor-02.jpg │ │ │ │ ├── doctor-03.jpg │ │ │ │ ├── doctor-04.jpg │ │ │ │ ├── doctor-05.jpg │ │ │ │ ├── doctor-06.jpg │ │ │ │ ├── doctor-07.jpg │ │ │ │ ├── doctor-08.jpg │ │ │ │ ├── doctor-09.jpg │ │ │ │ ├── doctor-10.jpg │ │ │ │ ├── doctor-11.jpg │ │ │ │ ├── doctor-12.jpg │ │ │ │ ├── doctor-thumb-01.jpg │ │ │ │ ├── doctor-thumb-02.jpg │ │ │ │ ├── doctor-thumb-03.jpg │ │ │ │ ├── doctor-thumb-04.jpg │ │ │ │ ├── doctor-thumb-05.jpg │ │ │ │ ├── doctor-thumb-06.jpg │ │ │ │ ├── doctor-thumb-07.jpg │ │ │ │ ├── doctor-thumb-08.jpg │ │ │ │ ├── doctor-thumb-09.jpg │ │ │ │ ├── doctor-thumb-10.jpg │ │ │ │ └── user-default.png │ │ │ ├── favicon.png │ │ │ ├── features │ │ │ │ ├── feature-01.jpg │ │ │ │ ├── feature-02.jpg │ │ │ │ ├── feature-03.jpg │ │ │ │ ├── feature-04.jpg │ │ │ │ ├── feature-05.jpg │ │ │ │ ├── feature-06.jpg │ │ │ │ └── feature.png │ │ │ ├── footer-logo.png │ │ │ ├── footer_logo.png │ │ │ ├── gyno1.jpg │ │ │ ├── gyno2.jpg │ │ │ ├── gyno3.jpg │ │ │ ├── gyno4.jpg │ │ │ ├── hospitals │ │ │ │ └── default.jpg │ │ │ ├── icon-01.png │ │ │ ├── icon-02.png │ │ │ ├── icon-03.png │ │ │ ├── img-01.jpg │ │ │ ├── img-02.jpg │ │ │ ├── img-03.jpg │ │ │ ├── img-04.jpg │ │ │ ├── location.png │ │ │ ├── login-banner.png │ │ │ ├── logo.jpg │ │ │ ├── obgyn.png │ │ │ ├── p1.png │ │ │ ├── p2.png │ │ │ ├── patients │ │ │ │ ├── patient.jpg │ │ │ │ ├── patient1.jpg │ │ │ │ ├── patient10.jpg │ │ │ │ ├── patient11.jpg │ │ │ │ ├── patient2.jpg │ │ │ │ ├── patient3.jpg │ │ │ │ ├── patient4.jpg │ │ │ │ ├── patient5.jpg │ │ │ │ ├── patient6.jpg │ │ │ │ ├── patient7.jpg │ │ │ │ ├── patient8.jpg │ │ │ │ ├── patient9.jpg │ │ │ │ └── user-default.png │ │ │ ├── pppp.jpg │ │ │ ├── search-bg - Copy.png │ │ │ ├── search-bg.png │ │ │ ├── search.png │ │ │ ├── specialities │ │ │ │ ├── specialities-01.png │ │ │ │ ├── specialities-02.png │ │ │ │ ├── specialities-03.png │ │ │ │ ├── specialities-04.png │ │ │ │ └── specialities-05.png │ │ │ └── video-call.jpg │ │ ├── admin │ │ │ ├── doctors │ │ │ │ ├── doctor-thumb-01.jpg │ │ │ │ ├── doctor-thumb-02.jpg │ │ │ │ ├── doctor-thumb-03.jpg │ │ │ │ ├── doctor-thumb-04.jpg │ │ │ │ ├── doctor-thumb-05.jpg │ │ │ │ ├── doctor-thumb-06.jpg │ │ │ │ ├── doctor-thumb-07.jpg │ │ │ │ ├── doctor-thumb-08.jpg │ │ │ │ ├── doctor-thumb-09.jpg │ │ │ │ └── doctor-thumb-10.jpg │ │ │ ├── favicon.png │ │ │ ├── img-01.jpg │ │ │ ├── logo-small.png │ │ │ ├── logo-white.png │ │ │ ├── logo.png │ │ │ ├── patients │ │ │ │ ├── patient1.jpg │ │ │ │ ├── patient10.jpg │ │ │ │ ├── patient11.jpg │ │ │ │ ├── patient12.jpg │ │ │ │ ├── patient13.jpg │ │ │ │ ├── patient14.jpg │ │ │ │ ├── patient15.jpg │ │ │ │ ├── patient2.jpg │ │ │ │ ├── patient3.jpg │ │ │ │ ├── patient4.jpg │ │ │ │ ├── patient5.jpg │ │ │ │ ├── patient6.jpg │ │ │ │ ├── patient7.jpg │ │ │ │ ├── patient8.jpg │ │ │ │ └── patient9.jpg │ │ │ ├── profiles │ │ │ │ ├── avatar-01.jpg │ │ │ │ ├── avatar-02.jpg │ │ │ │ ├── avatar-03.jpg │ │ │ │ └── avatar-04.jpg │ │ │ └── specialities │ │ │ │ ├── specialities-01.png │ │ │ │ ├── specialities-02.png │ │ │ │ ├── specialities-03.png │ │ │ │ ├── specialities-04.png │ │ │ │ └── specialities-05.png │ │ └── pharmacy │ │ │ ├── about.jpg │ │ │ ├── bg_1.jpg │ │ │ ├── bg_2.jpg │ │ │ ├── bg_3.jpg │ │ │ ├── bg_4.jpg │ │ │ ├── dessert-1.jpg │ │ │ ├── dessert-2.jpg │ │ │ ├── dessert-3.jpg │ │ │ ├── dessert-4.jpg │ │ │ ├── dessert-5.jpg │ │ │ ├── dessert-6.jpg │ │ │ ├── dish-1.jpg │ │ │ ├── dish-2.jpg │ │ │ ├── dish-3.jpg │ │ │ ├── dish-4.jpg │ │ │ ├── dish-5.jpg │ │ │ ├── dish-6.jpg │ │ │ ├── dish-7.jpg │ │ │ ├── dish-8.jpg │ │ │ ├── drink-1.jpg │ │ │ ├── drink-2.jpg │ │ │ ├── drink-3.jpg │ │ │ ├── drink-4.jpg │ │ │ ├── drink-5.jpg │ │ │ ├── drink-6.jpg │ │ │ ├── drink-7.jpg │ │ │ ├── drink-8.jpg │ │ │ ├── gallery-1.jpg │ │ │ ├── gallery-2.jpg │ │ │ ├── gallery-3.jpg │ │ │ ├── gallery-4.jpg │ │ │ ├── image_1.jpg │ │ │ ├── image_2.jpg │ │ │ ├── image_3.jpg │ │ │ ├── image_4.jpg │ │ │ ├── image_5.jpg │ │ │ ├── image_6.jpg │ │ │ ├── menu-1.jpg │ │ │ ├── menu-2.jpg │ │ │ ├── menu-3.jpg │ │ │ ├── menu-4.jpg │ │ │ ├── person_1.html │ │ │ ├── person_2.jpg │ │ │ ├── person_3.jpg │ │ │ └── person_4.jpg │ ├── js │ │ ├── Normal │ │ │ ├── add-more.js │ │ │ ├── bootstrap-datetimepicker.min.js │ │ │ ├── bootstrap.min.js │ │ │ ├── circle-progress.min.js │ │ │ ├── date_dropper.js │ │ │ ├── doctor-profile-settings.js │ │ │ ├── edit_hospital.js │ │ │ ├── jquery.min.js │ │ │ ├── moment.min.js │ │ │ ├── popper.min.js │ │ │ ├── prescription-settings.js │ │ │ ├── prescription_setting.js │ │ │ ├── profile-settings.js │ │ │ ├── profile_Settings.js │ │ │ ├── report-settings.js │ │ │ ├── script.js │ │ │ ├── search.js │ │ │ ├── sidebar.js │ │ │ ├── slick.js │ │ │ └── timedropper.js │ │ ├── admin │ │ │ ├── Chart.bundle.min.js │ │ │ ├── bootstrap.min.js │ │ │ ├── chart.morris.js │ │ │ ├── form-validation.js │ │ │ ├── jquery-3.2.1.min.js │ │ │ ├── jquery.maskedinput.min.js │ │ │ ├── mask.js │ │ │ ├── morris-init.js │ │ │ ├── morris.min.js │ │ │ ├── popper.min.js │ │ │ ├── raphael.min.js │ │ │ ├── script.js │ │ │ └── select2.min.js │ │ ├── circle-progress.min.js │ │ ├── jquery.min.js │ │ ├── pharmacy │ │ │ ├── aos.js │ │ │ ├── bootstrap-datepicker.js │ │ │ ├── bootstrap.min.js │ │ │ ├── google-map.js │ │ │ ├── jquery-migrate-3.0.1.min.js │ │ │ ├── jquery.animateNumber.min.js │ │ │ ├── jquery.easing.1.3.js │ │ │ ├── jquery.magnific-popup.min.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.stellar.min.js │ │ │ ├── jquery.timepicker.min.js │ │ │ ├── jquery.waypoints.min.js │ │ │ ├── main.js │ │ │ ├── owl.carousel.min.js │ │ │ ├── popper.min.js │ │ │ └── scrollax.min.js │ │ └── script.js │ ├── pharmacy_assets │ │ ├── css │ │ │ ├── animate.css │ │ │ ├── aos.css │ │ │ ├── bootstrap-datepicker.css │ │ │ ├── flaticon.css │ │ │ ├── icomoon.css │ │ │ ├── ionicons.min.css │ │ │ ├── jquery.timepicker.css │ │ │ ├── magnific-popup.css │ │ │ ├── open-iconic-bootstrap.min.css │ │ │ ├── owl.carousel.min.css │ │ │ ├── owl.theme.default.min.css │ │ │ ├── owl.video.play.html │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── flaticon │ │ │ │ └── font │ │ │ │ │ ├── Flaticon.eot │ │ │ │ │ ├── Flaticon.svg │ │ │ │ │ ├── Flaticon.ttf │ │ │ │ │ ├── Flaticon.woff │ │ │ │ │ └── Flaticond41d.eot │ │ │ ├── icomoon │ │ │ │ ├── icomoonccfb.eot │ │ │ │ ├── icomoonccfb.svg │ │ │ │ ├── icomoonccfb.ttf │ │ │ │ └── icomoonccfb.woff │ │ │ ├── ionicons │ │ │ │ └── fonts │ │ │ │ │ ├── ionicons580c.eot │ │ │ │ │ ├── ionicons580c.svg │ │ │ │ │ ├── ionicons580c.ttf │ │ │ │ │ ├── ionicons580c.woff │ │ │ │ │ └── ionicons580c.woff2 │ │ │ └── open-iconic │ │ │ │ ├── open-iconic.eot │ │ │ │ ├── open-iconic.otf │ │ │ │ ├── open-iconic.svg │ │ │ │ ├── open-iconic.ttf │ │ │ │ ├── open-iconic.woff │ │ │ │ └── open-iconicd41d.eot │ │ ├── images │ │ │ ├── about.jpg │ │ │ ├── bg_1.jpg │ │ │ ├── bg_2.jpg │ │ │ ├── bg_3.jpg │ │ │ ├── bg_4.jpg │ │ │ ├── dessert-1.jpg │ │ │ ├── dessert-2.jpg │ │ │ ├── dessert-3.jpg │ │ │ ├── dessert-4.jpg │ │ │ ├── dessert-5.jpg │ │ │ ├── dessert-6.jpg │ │ │ ├── dish-1.jpg │ │ │ ├── dish-2.jpg │ │ │ ├── dish-3.jpg │ │ │ ├── dish-4.jpg │ │ │ ├── dish-5.jpg │ │ │ ├── dish-6.jpg │ │ │ ├── dish-7.jpg │ │ │ ├── dish-8.jpg │ │ │ ├── drink-1.jpg │ │ │ ├── drink-2.jpg │ │ │ ├── drink-3.jpg │ │ │ ├── drink-4.jpg │ │ │ ├── drink-5.jpg │ │ │ ├── drink-6.jpg │ │ │ ├── drink-7.jpg │ │ │ ├── drink-8.jpg │ │ │ ├── gallery-1.jpg │ │ │ ├── gallery-2.jpg │ │ │ ├── gallery-3.jpg │ │ │ ├── gallery-4.jpg │ │ │ ├── image_1.jpg │ │ │ ├── image_2.jpg │ │ │ ├── image_3.jpg │ │ │ ├── image_4.jpg │ │ │ ├── image_5.jpg │ │ │ ├── image_6.jpg │ │ │ ├── menu-1.jpg │ │ │ ├── menu-2.jpg │ │ │ ├── menu-3.jpg │ │ │ ├── menu-4.jpg │ │ │ ├── person_1.html │ │ │ ├── person_2.jpg │ │ │ ├── person_3.jpg │ │ │ └── person_4.jpg │ │ └── js │ │ │ ├── aos.js │ │ │ ├── bootstrap-datepicker.js │ │ │ ├── bootstrap.min.js │ │ │ ├── google-map.js │ │ │ ├── jquery-migrate-3.0.1.min.js │ │ │ ├── jquery.animateNumber.min.js │ │ │ ├── jquery.easing.1.3.js │ │ │ ├── jquery.magnific-popup.min.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.stellar.min.js │ │ │ ├── jquery.timepicker.min.js │ │ │ ├── jquery.waypoints.min.js │ │ │ ├── main.js │ │ │ ├── owl.carousel.min.js │ │ │ ├── popper.min.js │ │ │ └── scrollax.min.js │ └── plugins │ │ ├── Normal │ │ ├── bootstrap-tagsinput │ │ │ ├── css │ │ │ │ └── bootstrap-tagsinput.css │ │ │ └── js │ │ │ │ └── bootstrap-tagsinput.js │ │ ├── dropzone │ │ │ ├── dropzone.min.css │ │ │ └── dropzone.min.js │ │ ├── fancybox │ │ │ ├── jquery.fancybox.min.css │ │ │ └── jquery.fancybox.min.js │ │ ├── fontawesome │ │ │ ├── css │ │ │ │ ├── all.min.css │ │ │ │ └── fontawesome.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.html │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400d41d.eot │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.html │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400d41d.eot │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.html │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900d41d.eot │ │ ├── fullcalendar │ │ │ ├── fullcalendar.min.css │ │ │ ├── fullcalendar.min.js │ │ │ └── jquery.fullcalendar.js │ │ ├── jquery-ui │ │ │ └── jquery-ui.min.js │ │ ├── select2 │ │ │ ├── css │ │ │ │ └── select2.min.css │ │ │ └── js │ │ │ │ └── select2.min.js │ │ └── theia-sticky-sidebar │ │ │ ├── ResizeSensor.js │ │ │ └── theia-sticky-sidebar.js │ │ └── admin │ │ ├── datatables │ │ ├── datatables.min.css │ │ ├── datatables.min.js │ │ └── jquery.dataTables.min.js │ │ ├── morris │ │ ├── morris.css │ │ └── morris.min.js │ │ ├── raphael │ │ └── raphael.min.js │ │ └── slimscroll │ │ └── jquery.slimscroll.min.js ├── css │ ├── bootstrap.min.css │ ├── checkbox-css.css │ ├── custom.css │ └── test.css ├── fontawesome-free │ ├── css │ │ ├── all.css │ │ ├── all.min.css │ │ ├── brands.css │ │ ├── brands.min.css │ │ ├── fontawesome.css │ │ ├── fontawesome.min.css │ │ ├── regular.css │ │ ├── regular.min.css │ │ ├── solid.css │ │ ├── solid.min.css │ │ ├── svg-with-js.css │ │ ├── svg-with-js.min.css │ │ ├── v4-shims.css │ │ └── v4-shims.min.css │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 ├── fonts │ └── roboto │ │ ├── Roboto-Bold.woff │ │ ├── Roboto-Bold.woff2 │ │ ├── Roboto-Light.woff │ │ ├── Roboto-Light.woff2 │ │ ├── Roboto-Medium.woff │ │ ├── Roboto-Medium.woff2 │ │ ├── Roboto-Regular.woff │ │ ├── Roboto-Regular.woff2 │ │ ├── Roboto-Thin.woff │ │ └── Roboto-Thin.woff2 ├── images │ ├── Certificate │ │ ├── Dr.Ayesha_Certificate.png │ │ ├── Dr.Fahad_Certificate.png │ │ ├── Dr.Jawwad_Certificate.png │ │ ├── Dr.Moumy_Certificate.png │ │ ├── Dr.Nafisa_Certificate.png │ │ ├── Dr.Pranto_Certificate.png │ │ └── Dr.Pranto_Certificate_2.png │ ├── admin │ │ ├── jawwad2.jpg │ │ └── user-default.png │ ├── departments │ │ ├── ann.jpg │ │ ├── can.jpg │ │ ├── can_YXPO7FN.jpg │ │ ├── car.png │ │ ├── car_aAEQ8lK.png │ │ ├── car_br3eAwn.png │ │ ├── car_jrUzoBS.png │ │ ├── cardiologist.png │ │ ├── cardiologist_9K0DiK9.png │ │ ├── cardiologist_CvhaG2W.png │ │ ├── cardiologist_SGOrgvO.png │ │ ├── cardiologist_lD3n6zS.png │ │ ├── cardiologist_lWPZtIi.png │ │ ├── cardiologist_r5gtbHv.png │ │ ├── cardiologist_rbv7w69.png │ │ ├── default.png │ │ ├── den.jpg │ │ ├── dentist.png │ │ ├── ent.jpg │ │ ├── neuro.jpg │ │ ├── neurology.png │ │ ├── neurology_CjEtvlJ.png │ │ ├── neurology_rgCFmr8.png │ │ ├── orthopedic.png │ │ ├── orthopedic_v2JojD4.png │ │ ├── specialities-01.png │ │ ├── specialities-01_xw9sTim.png │ │ ├── specialities-02.png │ │ ├── specialities-02_CfR8Hvj.png │ │ ├── specialities-02_MmnEX8b.png │ │ ├── specialities-03.png │ │ ├── specialities-04.png │ │ ├── specialities-05.png │ │ ├── urology.png │ │ ├── urology_6Xds6AN.png │ │ ├── urology_9aYFmVb.png │ │ ├── urology_E7aza0W.png │ │ ├── urology_I2OLlSH.png │ │ ├── urology_QwdRLpQ.png │ │ ├── urology_ZS4EEmK.png │ │ └── urology_yznAne2.png │ ├── doctors │ │ ├── 147749772_469407777396046_974630926015288090_n.jpg │ │ ├── 603465_488733571153747_332968119_n.jpg │ │ ├── 83207224_1030195257351244_6702749846450733056_n.jpg │ │ ├── Aysha.png │ │ ├── Jawwad.png │ │ ├── Pranto.png │ │ ├── Tarin.png │ │ ├── doctor-01.jpg │ │ ├── jawwad2.jpg │ │ ├── moumy.png │ │ ├── rafi.jpg │ │ └── user-default.png │ ├── doctors_certificate │ │ ├── Dr.Jawwad_Certificate.png │ │ ├── Dr.Jawwad_Certificate_9vx9hpS.png │ │ ├── Dr.Jawwad_Certificate_sjyYSPb.png │ │ ├── Dr.Pranto_Certificate_2.png │ │ └── default.png │ ├── hospitals │ │ ├── 1519800123757.jpg │ │ ├── Anwer_Khan_Modern_Hospital_Location_Address_Phone_Number.JPG │ │ ├── Screenshot_2022-09-15_at_1.09.40_PM.png │ │ ├── Screenshot_2022-09-15_at_1.09.40_PM_boXfKps.png │ │ ├── default.png │ │ ├── labaid.jpg │ │ ├── square-hospital.jpg │ │ └── united_hospital.jpg │ ├── medicines │ │ ├── Alatrol-Tablet.jpg │ │ ├── Alatrol-Tablet_Tmp1WFC.jpg │ │ ├── Alatrol-Tablet_zb8mVnI.jpg │ │ ├── Alcet 5mg Tab-400x400.jpg │ │ ├── Alcet_5mg_Tab-400x400.jpg │ │ ├── Alcet_5mg_Tab-400x400_jChl0bd.jpg │ │ ├── Cosec-Capsule-20-mg.jpg │ │ ├── Cosec-Capsule-20-mg_Pfdc7oQ.jpg │ │ ├── Seclo-20mg-1.jpg │ │ ├── Seclo-20mg-1_Rg3yOrg.jpg │ │ ├── Seclo-20mg-1_sj212wl.jpg │ │ ├── bg_1.jpg │ │ ├── default.png │ │ ├── medicen-121-scaled.jpg │ │ ├── medicen-121-scaled_1pLDm85.jpg │ │ ├── medicen-121-scaled_Wzl5hvs.jpg │ │ └── medicen-121-scaled_cPXsVSx.jpg │ ├── patients │ │ ├── 171778269_3915840095166271_4210963585814394425_n.jpg │ │ ├── 171778269_3915840095166271_4210963585814394425_n_Yi6ubBg.jpg │ │ ├── 171778269_3915840095166271_4210963585814394425_n_ixeg0Kf.jpg │ │ ├── 171778269_3915840095166271_4210963585814394425_n_oU9jRCe.jpg │ │ ├── 255272209_1762562800596616_3280839515157496517_n.jpg │ │ ├── 306295531_1055753685104966_4100305603060923644_n.jpg │ │ ├── 99055630_10223079159273804_6855771740136538112_n.jpg │ │ ├── Prisma_diagram_-_Page_2.png │ │ ├── faiyaz.jpg │ │ ├── mimo.jpg │ │ ├── nowshin.jpg │ │ └── user-default.png │ ├── pharmacist │ │ └── user-default.png │ └── technician │ │ ├── 942432_654972314529871_1579315196_n.jpg │ │ ├── Roronoa_Zoro.jpg │ │ ├── Roronoa_Zoro_bYH5yVi.jpg │ │ ├── jill2.png │ │ └── user-default.png └── js │ ├── bootstrap.min.js │ ├── jquery-3.6.0.min.js │ ├── jquery-ui.js │ ├── popper.min.js │ └── script.js ├── templates ├── Extras │ ├── blank-page.html │ ├── calendar.html │ ├── components.html │ ├── favourites.html │ ├── index.html │ ├── invoice-view.html │ ├── invoices.html │ ├── reviews.html │ ├── social-media.html │ ├── term-condition.html │ ├── video-call.html │ └── voice-call.html ├── Pharmacy │ ├── cart.html │ ├── checkout.html │ ├── message.html │ ├── product-single.html │ └── shop.html ├── about-us.html ├── add-billing.html ├── appointment-request-mail.html ├── appointment_accept_mail.html ├── appointment_mail_payment_template.html ├── appointment_reject_mail.html ├── appointments.html ├── booking-success.html ├── booking.html ├── cancel.html ├── change-password.html ├── chat-doctor.html ├── chat.html ├── chat │ ├── base.html │ ├── home.html │ ├── login.html │ ├── logout.html │ ├── profile.html │ └── register.html ├── checkout.html ├── create-prescription.html ├── data-table.html ├── demo.html ├── doctor-change-password.html ├── doctor-dashboard.html ├── doctor-login.html ├── doctor-navbar.html ├── doctor-profile-settings.html ├── doctor-profile.html ├── doctor-register.html ├── doctor-sidebar.html ├── doctor-test-list.html ├── doctor-view-prescription.html ├── doctor-view-report.html ├── edit-billing.html ├── fail.html ├── footer.html ├── hospital-department.html ├── hospital-doctor-list.html ├── hospital-doctor-register.html ├── hospital-profile.html ├── hospital_admin │ ├── Pending-doctor-list.html │ ├── accept-doctor-mail.html │ ├── add-hospital.html │ ├── add-lab-worker.html │ ├── add-medicine.html │ ├── add-pharmacist.html │ ├── add-test.html │ ├── admin-dashboard.html │ ├── appointment-list.html │ ├── create-invoice.html │ ├── create-report.html │ ├── department-image-list.html │ ├── doctor-list.html │ ├── doctor-profile.html │ ├── edit-emergency-information.html │ ├── edit-hospital.html │ ├── edit-lab-worker.html │ ├── edit-medicine.html │ ├── edit-pharmacist.html │ ├── emergency.html │ ├── forgot-password.html │ ├── hospital-admin-navbar.html │ ├── hospital-admin-profile.html │ ├── hospital-admin-sidebar.html │ ├── hospital-list.html │ ├── invoice-report.html │ ├── invoice.html │ ├── lab-worker-list.html │ ├── labworker-dashboard.html │ ├── labworker-navbar.html │ ├── labworker-sidebar.html │ ├── lock-screen.html │ ├── login.html │ ├── medicine-list.html │ ├── message.html │ ├── mypatient-list.html │ ├── patient-list.html │ ├── pharmacist-dashboard.html │ ├── pharmacist-list.html │ ├── pharmacist-navbar.html │ ├── pharmacist-sidebar.html │ ├── prescription-list.html │ ├── profile.html │ ├── register-doctor-list.html │ ├── register.html │ ├── reject-doctor-mail.html │ ├── report-list.html │ ├── report-mail-delivery.html │ ├── test-list.html │ └── transactions-list.html ├── index-2.html ├── ipn.html ├── mail_template.html ├── message.html ├── multiple-hospital.html ├── my-patients.html ├── navbar_home.html ├── pagination.html ├── patient-dashboard.html ├── patient-id.html ├── patient-login.html ├── patient-profile.html ├── patient-register.html ├── patient-sidebar.html ├── patient_navbar.html ├── payment_index.html ├── pharmacy_mail_payment_template.html ├── prescription-view.html ├── prescription_pdf.html ├── privacy-policy.html ├── profile-settings.html ├── report_pdf.html ├── reset.html ├── reset_password.html ├── reset_password_complete.html ├── reset_password_sent.html ├── schedule-timings.html ├── search-hospitals.html ├── search.html ├── success.html ├── test-cart.html ├── test_mail_payment_template.html ├── testing.html └── view-report.html └── test.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ChatApp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ChatApp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/ChatApp/admin.py -------------------------------------------------------------------------------- /ChatApp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/ChatApp/apps.py -------------------------------------------------------------------------------- /ChatApp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/ChatApp/migrations/0001_initial.py -------------------------------------------------------------------------------- /ChatApp/migrations/0002_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/ChatApp/migrations/0002_initial.py -------------------------------------------------------------------------------- /ChatApp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ChatApp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/ChatApp/models.py -------------------------------------------------------------------------------- /ChatApp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/ChatApp/tests.py -------------------------------------------------------------------------------- /ChatApp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/ChatApp/urls.py -------------------------------------------------------------------------------- /ChatApp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/ChatApp/views.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/README.md -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/api/serializers.py -------------------------------------------------------------------------------- /api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/api/urls.py -------------------------------------------------------------------------------- /api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/api/views.py -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /doctor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doctor/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/admin.py -------------------------------------------------------------------------------- /doctor/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/apps.py -------------------------------------------------------------------------------- /doctor/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/forms.py -------------------------------------------------------------------------------- /doctor/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/middleware.py -------------------------------------------------------------------------------- /doctor/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0001_initial.py -------------------------------------------------------------------------------- /doctor/migrations/0002_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0002_initial.py -------------------------------------------------------------------------------- /doctor/migrations/0003_remove_doctor_information_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0003_remove_doctor_information_service.py -------------------------------------------------------------------------------- /doctor/migrations/0005_alter_appointment_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0005_alter_appointment_date.py -------------------------------------------------------------------------------- /doctor/migrations/0006_test_specimen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0006_test_specimen.py -------------------------------------------------------------------------------- /doctor/migrations/0008_doctor_information_nid_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0008_doctor_information_nid_and_more.py -------------------------------------------------------------------------------- /doctor/migrations/0009_prescription_extra_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0009_prescription_extra_information.py -------------------------------------------------------------------------------- /doctor/migrations/0012_merge_20220909_1257.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0012_merge_20220909_1257.py -------------------------------------------------------------------------------- /doctor/migrations/0015_test_cart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0015_test_cart.py -------------------------------------------------------------------------------- /doctor/migrations/0016_test_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0016_test_order.py -------------------------------------------------------------------------------- /doctor/migrations/0017_alter_test_cart_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0017_alter_test_cart_item.py -------------------------------------------------------------------------------- /doctor/migrations/0019_delete_test_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0019_delete_test_info.py -------------------------------------------------------------------------------- /doctor/migrations/0021_doctor_information_login_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0021_doctor_information_login_status.py -------------------------------------------------------------------------------- /doctor/migrations/0021_test_cart_test_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0021_test_cart_test_name.py -------------------------------------------------------------------------------- /doctor/migrations/0022_prescription_create_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0022_prescription_create_date.py -------------------------------------------------------------------------------- /doctor/migrations/0023_merge_20220914_1911.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0023_merge_20220914_1911.py -------------------------------------------------------------------------------- /doctor/migrations/0024_merge_20220914_2334.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0024_merge_20220914_2334.py -------------------------------------------------------------------------------- /doctor/migrations/0025_prescription_test_info_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0025_prescription_test_info_id.py -------------------------------------------------------------------------------- /doctor/migrations/0027_doctor_review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0027_doctor_review.py -------------------------------------------------------------------------------- /doctor/migrations/0027_remove_test_cart_quantity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0027_remove_test_cart_quantity.py -------------------------------------------------------------------------------- /doctor/migrations/0028_prescription_test_test_info_price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0028_prescription_test_test_info_price.py -------------------------------------------------------------------------------- /doctor/migrations/0030_merge_20220915_1900.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0030_merge_20220915_1900.py -------------------------------------------------------------------------------- /doctor/migrations/0032_merge_20220915_2039.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0032_merge_20220915_2039.py -------------------------------------------------------------------------------- /doctor/migrations/0032_merge_20220915_2055.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0032_merge_20220915_2055.py -------------------------------------------------------------------------------- /doctor/migrations/0032_rename_test_cart_testcart_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0032_rename_test_cart_testcart_and_more.py -------------------------------------------------------------------------------- /doctor/migrations/0033_merge_20220915_2105.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0033_merge_20220915_2105.py -------------------------------------------------------------------------------- /doctor/migrations/0034_merge_20220915_2122.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0034_merge_20220915_2122.py -------------------------------------------------------------------------------- /doctor/migrations/0034_merge_20220915_2125.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0034_merge_20220915_2125.py -------------------------------------------------------------------------------- /doctor/migrations/0036_merge_20220915_2130.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0036_merge_20220915_2130.py -------------------------------------------------------------------------------- /doctor/migrations/0036_merge_20220916_0205.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0036_merge_20220916_0205.py -------------------------------------------------------------------------------- /doctor/migrations/0036_merge_20220916_1041.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0036_merge_20220916_1041.py -------------------------------------------------------------------------------- /doctor/migrations/0037_merge_20220916_1045.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0037_merge_20220916_1045.py -------------------------------------------------------------------------------- /doctor/migrations/0038_merge_20220916_1106.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0038_merge_20220916_1106.py -------------------------------------------------------------------------------- /doctor/migrations/0038_merge_20220916_1159.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0038_merge_20220916_1159.py -------------------------------------------------------------------------------- /doctor/migrations/0038_merge_20220917_0933.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0038_merge_20220917_0933.py -------------------------------------------------------------------------------- /doctor/migrations/0039_merge_20220917_1247.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0039_merge_20220917_1247.py -------------------------------------------------------------------------------- /doctor/migrations/0040_merge_20220917_1537.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0040_merge_20220917_1537.py -------------------------------------------------------------------------------- /doctor/migrations/0040_merge_20220917_1746.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0040_merge_20220917_1746.py -------------------------------------------------------------------------------- /doctor/migrations/0040_merge_20220917_1855.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0040_merge_20220917_1855.py -------------------------------------------------------------------------------- /doctor/migrations/0040_merge_20220917_1856.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0040_merge_20220917_1856.py -------------------------------------------------------------------------------- /doctor/migrations/0041_merge_20220917_1905.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0041_merge_20220917_1905.py -------------------------------------------------------------------------------- /doctor/migrations/0042_merge_20220917_1959.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0042_merge_20220917_1959.py -------------------------------------------------------------------------------- /doctor/migrations/0043_merge_20220918_0018.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0043_merge_20220918_0018.py -------------------------------------------------------------------------------- /doctor/migrations/0044_appointment_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/migrations/0044_appointment_message.py -------------------------------------------------------------------------------- /doctor/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doctor/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/models.py -------------------------------------------------------------------------------- /doctor/pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/pdf.py -------------------------------------------------------------------------------- /doctor/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/signals.py -------------------------------------------------------------------------------- /doctor/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/tests.py -------------------------------------------------------------------------------- /doctor/uitls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/uitls.py -------------------------------------------------------------------------------- /doctor/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/urls.py -------------------------------------------------------------------------------- /doctor/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/doctor/views.py -------------------------------------------------------------------------------- /healthstack/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /healthstack/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/healthstack/asgi.py -------------------------------------------------------------------------------- /healthstack/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/healthstack/settings.py -------------------------------------------------------------------------------- /healthstack/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/healthstack/urls.py -------------------------------------------------------------------------------- /healthstack/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/healthstack/wsgi.py -------------------------------------------------------------------------------- /heath_doc/docs/Lab_worker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/Lab_worker.md -------------------------------------------------------------------------------- /heath_doc/docs/Pharmacist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/Pharmacist.md -------------------------------------------------------------------------------- /heath_doc/docs/admin/Screenshot (225).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/admin/Screenshot (225).png -------------------------------------------------------------------------------- /heath_doc/docs/admin/Screenshot (226).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/admin/Screenshot (226).png -------------------------------------------------------------------------------- /heath_doc/docs/admin/Screenshot (227).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/admin/Screenshot (227).png -------------------------------------------------------------------------------- /heath_doc/docs/admin/Screenshot (228).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/admin/Screenshot (228).png -------------------------------------------------------------------------------- /heath_doc/docs/admin/Screenshot (229).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/admin/Screenshot (229).png -------------------------------------------------------------------------------- /heath_doc/docs/admin/Screenshot (230).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/admin/Screenshot (230).png -------------------------------------------------------------------------------- /heath_doc/docs/admin/Screenshot (231).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/admin/Screenshot (231).png -------------------------------------------------------------------------------- /heath_doc/docs/admin/Screenshot (232).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/admin/Screenshot (232).png -------------------------------------------------------------------------------- /heath_doc/docs/admin/Screenshot (233).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/admin/Screenshot (233).png -------------------------------------------------------------------------------- /heath_doc/docs/admin/Screenshot (234).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/admin/Screenshot (234).png -------------------------------------------------------------------------------- /heath_doc/docs/admin/Screenshot (235).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/admin/Screenshot (235).png -------------------------------------------------------------------------------- /heath_doc/docs/admin/Screenshot (236).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/admin/Screenshot (236).png -------------------------------------------------------------------------------- /heath_doc/docs/admins/add hospital info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/admins/add hospital info.png -------------------------------------------------------------------------------- /heath_doc/docs/admins/add labratory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/admins/add labratory.png -------------------------------------------------------------------------------- /heath_doc/docs/admins/add pharmacist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/admins/add pharmacist.png -------------------------------------------------------------------------------- /heath_doc/docs/admins/doctor-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/admins/doctor-list.png -------------------------------------------------------------------------------- /heath_doc/docs/admins/edit hospital information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/admins/edit hospital information.png -------------------------------------------------------------------------------- /heath_doc/docs/admins/view labratory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/admins/view labratory.png -------------------------------------------------------------------------------- /heath_doc/docs/admins/view pharmacist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/admins/view pharmacist.png -------------------------------------------------------------------------------- /heath_doc/docs/doctor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/doctor.md -------------------------------------------------------------------------------- /heath_doc/docs/doctor/Screenshot (218).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/doctor/Screenshot (218).png -------------------------------------------------------------------------------- /heath_doc/docs/doctor/Screenshot (219).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/doctor/Screenshot (219).png -------------------------------------------------------------------------------- /heath_doc/docs/doctor/Screenshot (220).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/doctor/Screenshot (220).png -------------------------------------------------------------------------------- /heath_doc/docs/doctor/Screenshot (221).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/doctor/Screenshot (221).png -------------------------------------------------------------------------------- /heath_doc/docs/doctor/Screenshot (222).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/doctor/Screenshot (222).png -------------------------------------------------------------------------------- /heath_doc/docs/doctor/Screenshot (223).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/doctor/Screenshot (223).png -------------------------------------------------------------------------------- /heath_doc/docs/doctor/Screenshot (224).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/doctor/Screenshot (224).png -------------------------------------------------------------------------------- /heath_doc/docs/home/Screenshot (201).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/home/Screenshot (201).png -------------------------------------------------------------------------------- /heath_doc/docs/home/Screenshot (202).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/home/Screenshot (202).png -------------------------------------------------------------------------------- /heath_doc/docs/home/Screenshot (203).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/home/Screenshot (203).png -------------------------------------------------------------------------------- /heath_doc/docs/home/Screenshot (204).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/home/Screenshot (204).png -------------------------------------------------------------------------------- /heath_doc/docs/home/Screenshot (205).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/home/Screenshot (205).png -------------------------------------------------------------------------------- /heath_doc/docs/home/Screenshot (206).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/home/Screenshot (206).png -------------------------------------------------------------------------------- /heath_doc/docs/hospital.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/hospital.md -------------------------------------------------------------------------------- /heath_doc/docs/hospital_admin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/hospital_admin.md -------------------------------------------------------------------------------- /heath_doc/docs/image/al-raji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/image/al-raji.png -------------------------------------------------------------------------------- /heath_doc/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/index.md -------------------------------------------------------------------------------- /heath_doc/docs/lab_worker/Screenshot (237).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/lab_worker/Screenshot (237).png -------------------------------------------------------------------------------- /heath_doc/docs/lab_worker/Screenshot (238).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/lab_worker/Screenshot (238).png -------------------------------------------------------------------------------- /heath_doc/docs/lab_worker/Screenshot (239).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/lab_worker/Screenshot (239).png -------------------------------------------------------------------------------- /heath_doc/docs/lab_worker/Screenshot (240).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/lab_worker/Screenshot (240).png -------------------------------------------------------------------------------- /heath_doc/docs/mailttrap/Mail_pic.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/mailttrap/Mail_pic.PNG -------------------------------------------------------------------------------- /heath_doc/docs/page2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/page2.md -------------------------------------------------------------------------------- /heath_doc/docs/patient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/patient.md -------------------------------------------------------------------------------- /heath_doc/docs/patient/Screenshot (207).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/patient/Screenshot (207).png -------------------------------------------------------------------------------- /heath_doc/docs/patient/Screenshot (208).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/patient/Screenshot (208).png -------------------------------------------------------------------------------- /heath_doc/docs/patient/Screenshot (209).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/patient/Screenshot (209).png -------------------------------------------------------------------------------- /heath_doc/docs/patient/Screenshot (210).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/patient/Screenshot (210).png -------------------------------------------------------------------------------- /heath_doc/docs/patient/Screenshot (211).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/patient/Screenshot (211).png -------------------------------------------------------------------------------- /heath_doc/docs/patient/Screenshot (212).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/patient/Screenshot (212).png -------------------------------------------------------------------------------- /heath_doc/docs/patient/Screenshot (213).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/patient/Screenshot (213).png -------------------------------------------------------------------------------- /heath_doc/docs/patient/Screenshot (214).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/patient/Screenshot (214).png -------------------------------------------------------------------------------- /heath_doc/docs/patient/Screenshot (215).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/patient/Screenshot (215).png -------------------------------------------------------------------------------- /heath_doc/docs/patient/Screenshot (216).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/patient/Screenshot (216).png -------------------------------------------------------------------------------- /heath_doc/docs/patient/Screenshot (217).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/patient/Screenshot (217).png -------------------------------------------------------------------------------- /heath_doc/docs/patient/Screenshot (253).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/patient/Screenshot (253).png -------------------------------------------------------------------------------- /heath_doc/docs/patient/Screenshot (254).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/patient/Screenshot (254).png -------------------------------------------------------------------------------- /heath_doc/docs/patient/Screenshot (256).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/patient/Screenshot (256).png -------------------------------------------------------------------------------- /heath_doc/docs/payment/Screenshot (249).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/payment/Screenshot (249).png -------------------------------------------------------------------------------- /heath_doc/docs/payment/Screenshot (250).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/payment/Screenshot (250).png -------------------------------------------------------------------------------- /heath_doc/docs/payment/Screenshot (251).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/payment/Screenshot (251).png -------------------------------------------------------------------------------- /heath_doc/docs/payment/Screenshot (252).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/payment/Screenshot (252).png -------------------------------------------------------------------------------- /heath_doc/docs/pharmacist/Screenshot (242).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/pharmacist/Screenshot (242).png -------------------------------------------------------------------------------- /heath_doc/docs/pharmacist/Screenshot (243).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/pharmacist/Screenshot (243).png -------------------------------------------------------------------------------- /heath_doc/docs/pharmacist/Screenshot (244).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/pharmacist/Screenshot (244).png -------------------------------------------------------------------------------- /heath_doc/docs/pharmacist/Screenshot (245).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/pharmacist/Screenshot (245).png -------------------------------------------------------------------------------- /heath_doc/docs/pharmacy/Screenshot (242).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/pharmacy/Screenshot (242).png -------------------------------------------------------------------------------- /heath_doc/docs/pharmacy/Screenshot (243).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/pharmacy/Screenshot (243).png -------------------------------------------------------------------------------- /heath_doc/docs/pharmacy/Screenshot (244).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/pharmacy/Screenshot (244).png -------------------------------------------------------------------------------- /heath_doc/docs/pharmacy/Screenshot (245).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/pharmacy/Screenshot (245).png -------------------------------------------------------------------------------- /heath_doc/docs/pharmacy/Screenshot (246).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/pharmacy/Screenshot (246).png -------------------------------------------------------------------------------- /heath_doc/docs/pharmacy/Screenshot (247).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/pharmacy/Screenshot (247).png -------------------------------------------------------------------------------- /heath_doc/docs/pharmacy/Screenshot (248).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/docs/pharmacy/Screenshot (248).png -------------------------------------------------------------------------------- /heath_doc/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/heath_doc/mkdocs.yml -------------------------------------------------------------------------------- /hospital/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hospital/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/hospital/admin.py -------------------------------------------------------------------------------- /hospital/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/hospital/apps.py -------------------------------------------------------------------------------- /hospital/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/hospital/forms.py -------------------------------------------------------------------------------- /hospital/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/hospital/migrations/0001_initial.py -------------------------------------------------------------------------------- /hospital/migrations/0002_patient_login_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/hospital/migrations/0002_patient_login_status.py -------------------------------------------------------------------------------- /hospital/migrations/0003_user_login_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/hospital/migrations/0003_user_login_status.py -------------------------------------------------------------------------------- /hospital/migrations/0004_alter_user_login_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/hospital/migrations/0004_alter_user_login_status.py -------------------------------------------------------------------------------- /hospital/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hospital/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/hospital/models.py -------------------------------------------------------------------------------- /hospital/pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/hospital/pdf.py -------------------------------------------------------------------------------- /hospital/pres_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/hospital/pres_pdf.py -------------------------------------------------------------------------------- /hospital/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/hospital/signals.py -------------------------------------------------------------------------------- /hospital/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/hospital/tests.py -------------------------------------------------------------------------------- /hospital/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/hospital/urls.py -------------------------------------------------------------------------------- /hospital/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/hospital/utils.py -------------------------------------------------------------------------------- /hospital/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/hospital/views.py -------------------------------------------------------------------------------- /hospital_admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hospital_admin/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/hospital_admin/admin.py -------------------------------------------------------------------------------- /hospital_admin/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/hospital_admin/apps.py -------------------------------------------------------------------------------- /hospital_admin/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/hospital_admin/forms.py -------------------------------------------------------------------------------- /hospital_admin/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/hospital_admin/migrations/0001_initial.py -------------------------------------------------------------------------------- /hospital_admin/migrations/0003_test_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/hospital_admin/migrations/0003_test_information.py -------------------------------------------------------------------------------- /hospital_admin/migrations/0005_admin_information_hospital.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/hospital_admin/migrations/0005_admin_information_hospital.py -------------------------------------------------------------------------------- /hospital_admin/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hospital_admin/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/hospital_admin/models.py -------------------------------------------------------------------------------- /hospital_admin/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/hospital_admin/signals.py -------------------------------------------------------------------------------- /hospital_admin/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/hospital_admin/tests.py -------------------------------------------------------------------------------- /hospital_admin/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/hospital_admin/urls.py -------------------------------------------------------------------------------- /hospital_admin/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/hospital_admin/utils.py -------------------------------------------------------------------------------- /hospital_admin/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/hospital_admin/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/manage.py -------------------------------------------------------------------------------- /pharmacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pharmacy/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/pharmacy/admin.py -------------------------------------------------------------------------------- /pharmacy/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/pharmacy/apps.py -------------------------------------------------------------------------------- /pharmacy/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/pharmacy/forms.py -------------------------------------------------------------------------------- /pharmacy/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/pharmacy/migrations/0001_initial.py -------------------------------------------------------------------------------- /pharmacy/migrations/0002_cart_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/pharmacy/migrations/0002_cart_order.py -------------------------------------------------------------------------------- /pharmacy/migrations/0003_rename_orderid_order_trans_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/pharmacy/migrations/0003_rename_orderid_order_trans_id.py -------------------------------------------------------------------------------- /pharmacy/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pharmacy/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/pharmacy/models.py -------------------------------------------------------------------------------- /pharmacy/signals.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pharmacy/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/pharmacy/tests.py -------------------------------------------------------------------------------- /pharmacy/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/pharmacy/urls.py -------------------------------------------------------------------------------- /pharmacy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/pharmacy/utils.py -------------------------------------------------------------------------------- /pharmacy/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/pharmacy/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/setup.py -------------------------------------------------------------------------------- /sslcommerz/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sslcommerz/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/sslcommerz/admin.py -------------------------------------------------------------------------------- /sslcommerz/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/sslcommerz/apps.py -------------------------------------------------------------------------------- /sslcommerz/forms.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sslcommerz/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/sslcommerz/migrations/0001_initial.py -------------------------------------------------------------------------------- /sslcommerz/migrations/0003_remove_payment_api_payment_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/sslcommerz/migrations/0003_remove_payment_api_payment_type.py -------------------------------------------------------------------------------- /sslcommerz/migrations/0004_payment_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/sslcommerz/migrations/0004_payment_order.py -------------------------------------------------------------------------------- /sslcommerz/migrations/0005_payment_test_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/sslcommerz/migrations/0005_payment_test_order.py -------------------------------------------------------------------------------- /sslcommerz/migrations/0006_payment_prescription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/sslcommerz/migrations/0006_payment_prescription.py -------------------------------------------------------------------------------- /sslcommerz/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sslcommerz/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/sslcommerz/models.py -------------------------------------------------------------------------------- /sslcommerz/signals.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sslcommerz/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/sslcommerz/tests.py -------------------------------------------------------------------------------- /sslcommerz/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/sslcommerz/urls.py -------------------------------------------------------------------------------- /sslcommerz/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/sslcommerz/views.py -------------------------------------------------------------------------------- /sslcommerz_lib/__init__.py: -------------------------------------------------------------------------------- 1 | from .sslcommerz import SSLCOMMERZ 2 | -------------------------------------------------------------------------------- /sslcommerz_lib/sslcommerz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/sslcommerz_lib/sslcommerz.py -------------------------------------------------------------------------------- /static/HealthStack-System/Outside_assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/Outside_assets/css/style.css -------------------------------------------------------------------------------- /static/HealthStack-System/Outside_assets/img/FullLogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/Outside_assets/img/FullLogo.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/Outside_assets/img/LOGO/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/Outside_assets/img/LOGO/1.png -------------------------------------------------------------------------------- /static/HealthStack-System/Outside_assets/img/LOGO/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/Outside_assets/img/LOGO/2.png -------------------------------------------------------------------------------- /static/HealthStack-System/Outside_assets/img/LOGO/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/Outside_assets/img/LOGO/3.png -------------------------------------------------------------------------------- /static/HealthStack-System/Outside_assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/Outside_assets/img/favicon.png -------------------------------------------------------------------------------- /static/HealthStack-System/Outside_assets/img/footer-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/Outside_assets/img/footer-logo.png -------------------------------------------------------------------------------- /static/HealthStack-System/Outside_assets/img/footer_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/Outside_assets/img/footer_logo.png -------------------------------------------------------------------------------- /static/HealthStack-System/Outside_assets/img/icon-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/Outside_assets/img/icon-01.png -------------------------------------------------------------------------------- /static/HealthStack-System/Outside_assets/img/icon-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/Outside_assets/img/icon-02.png -------------------------------------------------------------------------------- /static/HealthStack-System/Outside_assets/img/icon-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/Outside_assets/img/icon-03.png -------------------------------------------------------------------------------- /static/HealthStack-System/Outside_assets/img/img-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/Outside_assets/img/img-01.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/Outside_assets/img/img-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/Outside_assets/img/img-02.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/Outside_assets/img/img-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/Outside_assets/img/img-03.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/Outside_assets/img/img-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/Outside_assets/img/img-04.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/Outside_assets/img/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/Outside_assets/img/location.png -------------------------------------------------------------------------------- /static/HealthStack-System/Outside_assets/img/login-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/Outside_assets/img/login-banner.png -------------------------------------------------------------------------------- /static/HealthStack-System/Outside_assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/Outside_assets/img/logo.png -------------------------------------------------------------------------------- /static/HealthStack-System/Outside_assets/img/search-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/Outside_assets/img/search-bg.png -------------------------------------------------------------------------------- /static/HealthStack-System/Outside_assets/img/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/Outside_assets/img/search.png -------------------------------------------------------------------------------- /static/HealthStack-System/Outside_assets/img/video-call.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/Outside_assets/img/video-call.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/Outside_assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/Outside_assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/Outside_assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/Outside_assets/js/jquery.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/Outside_assets/js/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/Outside_assets/js/moment.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/Outside_assets/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/Outside_assets/js/popper.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/Outside_assets/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/Outside_assets/js/script.js -------------------------------------------------------------------------------- /static/HealthStack-System/Outside_assets/js/slick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/Outside_assets/js/slick.js -------------------------------------------------------------------------------- /static/HealthStack-System/admin_assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/admin_assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/HealthStack-System/admin_assets/css/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/admin_assets/css/select2.min.css -------------------------------------------------------------------------------- /static/HealthStack-System/admin_assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/admin_assets/css/style.css -------------------------------------------------------------------------------- /static/HealthStack-System/admin_assets/fonts/feathericon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/admin_assets/fonts/feathericon.eot -------------------------------------------------------------------------------- /static/HealthStack-System/admin_assets/fonts/feathericon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/admin_assets/fonts/feathericon.svg -------------------------------------------------------------------------------- /static/HealthStack-System/admin_assets/fonts/feathericon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/admin_assets/fonts/feathericon.ttf -------------------------------------------------------------------------------- /static/HealthStack-System/admin_assets/fonts/feathericon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/admin_assets/fonts/feathericon.woff -------------------------------------------------------------------------------- /static/HealthStack-System/admin_assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/admin_assets/img/favicon.png -------------------------------------------------------------------------------- /static/HealthStack-System/admin_assets/img/img-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/admin_assets/img/img-01.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/admin_assets/img/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/admin_assets/img/logo-small.png -------------------------------------------------------------------------------- /static/HealthStack-System/admin_assets/img/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/admin_assets/img/logo-white.png -------------------------------------------------------------------------------- /static/HealthStack-System/admin_assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/admin_assets/img/logo.png -------------------------------------------------------------------------------- /static/HealthStack-System/admin_assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/admin_assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/admin_assets/js/chart.morris.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/admin_assets/js/chart.morris.js -------------------------------------------------------------------------------- /static/HealthStack-System/admin_assets/js/form-validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/admin_assets/js/form-validation.js -------------------------------------------------------------------------------- /static/HealthStack-System/admin_assets/js/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/admin_assets/js/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/admin_assets/js/mask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/admin_assets/js/mask.js -------------------------------------------------------------------------------- /static/HealthStack-System/admin_assets/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/admin_assets/js/popper.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/admin_assets/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/admin_assets/js/script.js -------------------------------------------------------------------------------- /static/HealthStack-System/admin_assets/js/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/admin_assets/js/select2.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/css/Normal/booking.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/Normal/booking.css -------------------------------------------------------------------------------- /static/HealthStack-System/css/Normal/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/Normal/bootstrap.min.css -------------------------------------------------------------------------------- /static/HealthStack-System/css/Normal/date_dropper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/Normal/date_dropper.css -------------------------------------------------------------------------------- /static/HealthStack-System/css/Normal/department.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/Normal/department.css -------------------------------------------------------------------------------- /static/HealthStack-System/css/Normal/hospital.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/Normal/hospital.css -------------------------------------------------------------------------------- /static/HealthStack-System/css/Normal/my_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/Normal/my_style.css -------------------------------------------------------------------------------- /static/HealthStack-System/css/Normal/search-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/Normal/search-bg.png -------------------------------------------------------------------------------- /static/HealthStack-System/css/Normal/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/Normal/search.css -------------------------------------------------------------------------------- /static/HealthStack-System/css/Normal/search2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/Normal/search2.css -------------------------------------------------------------------------------- /static/HealthStack-System/css/Normal/search3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/Normal/search3.css -------------------------------------------------------------------------------- /static/HealthStack-System/css/Normal/src/datedropper.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/Normal/src/datedropper.eot -------------------------------------------------------------------------------- /static/HealthStack-System/css/Normal/src/datedropper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/Normal/src/datedropper.svg -------------------------------------------------------------------------------- /static/HealthStack-System/css/Normal/src/datedropper.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/Normal/src/datedropper.ttf -------------------------------------------------------------------------------- /static/HealthStack-System/css/Normal/src/datedropper.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/Normal/src/datedropper.woff -------------------------------------------------------------------------------- /static/HealthStack-System/css/Normal/src/datedropperd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/Normal/src/datedropperd41d.eot -------------------------------------------------------------------------------- /static/HealthStack-System/css/Normal/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/Normal/style.css -------------------------------------------------------------------------------- /static/HealthStack-System/css/Normal/timedropper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/Normal/timedropper.css -------------------------------------------------------------------------------- /static/HealthStack-System/css/admin/add-hospital.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/admin/add-hospital.css -------------------------------------------------------------------------------- /static/HealthStack-System/css/admin/add-medicine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/admin/add-medicine.css -------------------------------------------------------------------------------- /static/HealthStack-System/css/admin/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/admin/bootstrap.min.css -------------------------------------------------------------------------------- /static/HealthStack-System/css/admin/feathericon.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/admin/feathericon.min.css -------------------------------------------------------------------------------- /static/HealthStack-System/css/admin/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/admin/font-awesome.min.css -------------------------------------------------------------------------------- /static/HealthStack-System/css/admin/pending-doctor-list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/admin/pending-doctor-list.css -------------------------------------------------------------------------------- /static/HealthStack-System/css/admin/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/admin/select2.min.css -------------------------------------------------------------------------------- /static/HealthStack-System/css/admin/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/admin/style.css -------------------------------------------------------------------------------- /static/HealthStack-System/css/pharmacy/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/pharmacy/animate.css -------------------------------------------------------------------------------- /static/HealthStack-System/css/pharmacy/aos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/pharmacy/aos.css -------------------------------------------------------------------------------- /static/HealthStack-System/css/pharmacy/flaticon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/pharmacy/flaticon.css -------------------------------------------------------------------------------- /static/HealthStack-System/css/pharmacy/icomoon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/pharmacy/icomoon.css -------------------------------------------------------------------------------- /static/HealthStack-System/css/pharmacy/ionicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/pharmacy/ionicons.min.css -------------------------------------------------------------------------------- /static/HealthStack-System/css/pharmacy/jquery.timepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/pharmacy/jquery.timepicker.css -------------------------------------------------------------------------------- /static/HealthStack-System/css/pharmacy/magnific-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/pharmacy/magnific-popup.css -------------------------------------------------------------------------------- /static/HealthStack-System/css/pharmacy/owl.carousel.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/pharmacy/owl.carousel.min.css -------------------------------------------------------------------------------- /static/HealthStack-System/css/pharmacy/owl.video.play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/pharmacy/owl.video.play.html -------------------------------------------------------------------------------- /static/HealthStack-System/css/pharmacy/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/css/pharmacy/style.css -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/FullLogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/FullLogo.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/LOGO/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/LOGO/1.png -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/LOGO/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/LOGO/2.png -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/LOGO/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/LOGO/3.png -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/doctors/doctor-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/doctors/doctor-01.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/doctors/doctor-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/doctors/doctor-02.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/doctors/doctor-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/doctors/doctor-03.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/doctors/doctor-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/doctors/doctor-04.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/doctors/doctor-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/doctors/doctor-05.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/doctors/doctor-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/doctors/doctor-06.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/doctors/doctor-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/doctors/doctor-07.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/doctors/doctor-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/doctors/doctor-08.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/doctors/doctor-09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/doctors/doctor-09.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/doctors/doctor-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/doctors/doctor-10.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/doctors/doctor-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/doctors/doctor-11.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/doctors/doctor-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/doctors/doctor-12.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/favicon.png -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/features/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/features/feature.png -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/footer-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/footer-logo.png -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/footer_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/footer_logo.png -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/gyno1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/gyno1.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/gyno2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/gyno2.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/gyno3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/gyno3.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/gyno4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/gyno4.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/hospitals/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/hospitals/default.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/icon-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/icon-01.png -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/icon-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/icon-02.png -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/icon-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/icon-03.png -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/img-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/img-01.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/img-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/img-02.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/img-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/img-03.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/img-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/img-04.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/location.png -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/login-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/login-banner.png -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/logo.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/obgyn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/obgyn.png -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/p1.png -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/p2.png -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/patients/patient.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/patients/patient.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/patients/patient1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/patients/patient1.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/patients/patient2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/patients/patient2.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/patients/patient3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/patients/patient3.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/patients/patient4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/patients/patient4.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/patients/patient5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/patients/patient5.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/patients/patient6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/patients/patient6.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/patients/patient7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/patients/patient7.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/patients/patient8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/patients/patient8.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/patients/patient9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/patients/patient9.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/pppp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/pppp.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/search-bg - Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/search-bg - Copy.png -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/search-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/search-bg.png -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/search.png -------------------------------------------------------------------------------- /static/HealthStack-System/images/Normal/video-call.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/Normal/video-call.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/admin/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/admin/favicon.png -------------------------------------------------------------------------------- /static/HealthStack-System/images/admin/img-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/admin/img-01.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/admin/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/admin/logo-small.png -------------------------------------------------------------------------------- /static/HealthStack-System/images/admin/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/admin/logo-white.png -------------------------------------------------------------------------------- /static/HealthStack-System/images/admin/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/admin/logo.png -------------------------------------------------------------------------------- /static/HealthStack-System/images/admin/patients/patient1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/admin/patients/patient1.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/admin/patients/patient10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/admin/patients/patient10.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/admin/patients/patient11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/admin/patients/patient11.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/admin/patients/patient12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/admin/patients/patient12.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/admin/patients/patient13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/admin/patients/patient13.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/admin/patients/patient14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/admin/patients/patient14.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/admin/patients/patient15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/admin/patients/patient15.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/admin/patients/patient2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/admin/patients/patient2.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/admin/patients/patient3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/admin/patients/patient3.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/admin/patients/patient4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/admin/patients/patient4.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/admin/patients/patient5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/admin/patients/patient5.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/admin/patients/patient6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/admin/patients/patient6.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/admin/patients/patient7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/admin/patients/patient7.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/admin/patients/patient8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/admin/patients/patient8.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/admin/patients/patient9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/admin/patients/patient9.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/admin/profiles/avatar-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/admin/profiles/avatar-01.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/admin/profiles/avatar-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/admin/profiles/avatar-02.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/admin/profiles/avatar-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/admin/profiles/avatar-03.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/admin/profiles/avatar-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/admin/profiles/avatar-04.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/about.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/bg_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/bg_1.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/bg_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/bg_2.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/bg_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/bg_3.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/bg_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/bg_4.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/dessert-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/dessert-1.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/dessert-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/dessert-2.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/dessert-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/dessert-3.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/dessert-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/dessert-4.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/dessert-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/dessert-5.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/dessert-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/dessert-6.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/dish-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/dish-1.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/dish-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/dish-2.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/dish-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/dish-3.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/dish-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/dish-4.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/dish-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/dish-5.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/dish-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/dish-6.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/dish-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/dish-7.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/dish-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/dish-8.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/drink-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/drink-1.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/drink-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/drink-2.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/drink-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/drink-3.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/drink-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/drink-4.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/drink-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/drink-5.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/drink-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/drink-6.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/drink-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/drink-7.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/drink-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/drink-8.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/gallery-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/gallery-1.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/gallery-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/gallery-2.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/gallery-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/gallery-3.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/gallery-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/gallery-4.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/image_1.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/image_2.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/image_3.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/image_4.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/image_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/image_5.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/image_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/image_6.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/menu-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/menu-1.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/menu-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/menu-2.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/menu-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/menu-3.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/menu-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/menu-4.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/person_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/person_1.html -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/person_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/person_2.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/person_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/person_3.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/images/pharmacy/person_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/images/pharmacy/person_4.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/js/Normal/add-more.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/Normal/add-more.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/Normal/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/Normal/bootstrap.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/Normal/circle-progress.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/Normal/circle-progress.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/Normal/date_dropper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/Normal/date_dropper.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/Normal/edit_hospital.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/Normal/edit_hospital.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/Normal/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/Normal/jquery.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/Normal/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/Normal/moment.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/Normal/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/Normal/popper.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/Normal/prescription-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/Normal/prescription-settings.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/Normal/prescription_setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/Normal/prescription_setting.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/Normal/profile-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/Normal/profile-settings.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/Normal/profile_Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/Normal/profile_Settings.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/Normal/report-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/Normal/report-settings.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/Normal/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/Normal/script.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/Normal/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/Normal/search.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/Normal/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/Normal/sidebar.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/Normal/slick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/Normal/slick.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/Normal/timedropper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/Normal/timedropper.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/admin/Chart.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/admin/Chart.bundle.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/admin/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/admin/bootstrap.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/admin/chart.morris.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/admin/chart.morris.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/admin/form-validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/admin/form-validation.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/admin/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/admin/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/admin/jquery.maskedinput.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/admin/jquery.maskedinput.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/admin/mask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/admin/mask.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/admin/morris-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/admin/morris-init.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/admin/morris.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/admin/morris.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/admin/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/admin/popper.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/admin/raphael.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/admin/raphael.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/admin/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/admin/script.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/admin/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/admin/select2.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/circle-progress.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/circle-progress.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/jquery.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/pharmacy/aos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/pharmacy/aos.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/pharmacy/bootstrap-datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/pharmacy/bootstrap-datepicker.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/pharmacy/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/pharmacy/bootstrap.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/pharmacy/google-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/pharmacy/google-map.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/pharmacy/jquery.easing.1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/pharmacy/jquery.easing.1.3.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/pharmacy/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/pharmacy/jquery.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/pharmacy/jquery.stellar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/pharmacy/jquery.stellar.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/pharmacy/jquery.waypoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/pharmacy/jquery.waypoints.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/pharmacy/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/pharmacy/main.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/pharmacy/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/pharmacy/owl.carousel.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/pharmacy/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/pharmacy/popper.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/pharmacy/scrollax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/pharmacy/scrollax.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/js/script.js -------------------------------------------------------------------------------- /static/HealthStack-System/pharmacy_assets/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/pharmacy_assets/css/animate.css -------------------------------------------------------------------------------- /static/HealthStack-System/pharmacy_assets/css/aos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/pharmacy_assets/css/aos.css -------------------------------------------------------------------------------- /static/HealthStack-System/pharmacy_assets/css/flaticon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/pharmacy_assets/css/flaticon.css -------------------------------------------------------------------------------- /static/HealthStack-System/pharmacy_assets/css/icomoon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/pharmacy_assets/css/icomoon.css -------------------------------------------------------------------------------- /static/HealthStack-System/pharmacy_assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/pharmacy_assets/css/style.css -------------------------------------------------------------------------------- /static/HealthStack-System/pharmacy_assets/images/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/pharmacy_assets/images/about.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/pharmacy_assets/images/bg_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/pharmacy_assets/images/bg_1.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/pharmacy_assets/images/bg_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/pharmacy_assets/images/bg_2.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/pharmacy_assets/images/bg_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/pharmacy_assets/images/bg_3.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/pharmacy_assets/images/bg_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/pharmacy_assets/images/bg_4.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/pharmacy_assets/images/dish-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/pharmacy_assets/images/dish-1.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/pharmacy_assets/images/dish-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/pharmacy_assets/images/dish-2.jpg -------------------------------------------------------------------------------- /static/HealthStack-System/pharmacy_assets/js/aos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/pharmacy_assets/js/aos.js -------------------------------------------------------------------------------- /static/HealthStack-System/pharmacy_assets/js/google-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/pharmacy_assets/js/google-map.js -------------------------------------------------------------------------------- /static/HealthStack-System/pharmacy_assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/pharmacy_assets/js/jquery.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/pharmacy_assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/pharmacy_assets/js/main.js -------------------------------------------------------------------------------- /static/HealthStack-System/pharmacy_assets/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/pharmacy_assets/js/popper.min.js -------------------------------------------------------------------------------- /static/HealthStack-System/plugins/admin/morris/morris.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/HealthStack-System/plugins/admin/morris/morris.css -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/checkbox-css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/css/checkbox-css.css -------------------------------------------------------------------------------- /static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/css/custom.css -------------------------------------------------------------------------------- /static/css/test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/css/test.css -------------------------------------------------------------------------------- /static/fontawesome-free/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fontawesome-free/css/all.css -------------------------------------------------------------------------------- /static/fontawesome-free/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fontawesome-free/css/all.min.css -------------------------------------------------------------------------------- /static/fontawesome-free/css/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fontawesome-free/css/brands.css -------------------------------------------------------------------------------- /static/fontawesome-free/css/brands.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fontawesome-free/css/brands.min.css -------------------------------------------------------------------------------- /static/fontawesome-free/css/fontawesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fontawesome-free/css/fontawesome.css -------------------------------------------------------------------------------- /static/fontawesome-free/css/fontawesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fontawesome-free/css/fontawesome.min.css -------------------------------------------------------------------------------- /static/fontawesome-free/css/regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fontawesome-free/css/regular.css -------------------------------------------------------------------------------- /static/fontawesome-free/css/regular.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fontawesome-free/css/regular.min.css -------------------------------------------------------------------------------- /static/fontawesome-free/css/solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fontawesome-free/css/solid.css -------------------------------------------------------------------------------- /static/fontawesome-free/css/solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fontawesome-free/css/solid.min.css -------------------------------------------------------------------------------- /static/fontawesome-free/css/svg-with-js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fontawesome-free/css/svg-with-js.css -------------------------------------------------------------------------------- /static/fontawesome-free/css/svg-with-js.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fontawesome-free/css/svg-with-js.min.css -------------------------------------------------------------------------------- /static/fontawesome-free/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fontawesome-free/css/v4-shims.css -------------------------------------------------------------------------------- /static/fontawesome-free/css/v4-shims.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fontawesome-free/css/v4-shims.min.css -------------------------------------------------------------------------------- /static/fontawesome-free/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fontawesome-free/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /static/fontawesome-free/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fontawesome-free/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /static/fontawesome-free/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fontawesome-free/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /static/fontawesome-free/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fontawesome-free/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /static/fontawesome-free/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fontawesome-free/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /static/fontawesome-free/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fontawesome-free/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /static/fontawesome-free/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fontawesome-free/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /static/fontawesome-free/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fontawesome-free/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /static/fontawesome-free/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fontawesome-free/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /static/fontawesome-free/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fontawesome-free/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /static/fontawesome-free/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fontawesome-free/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /static/fontawesome-free/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fontawesome-free/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /static/fontawesome-free/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fontawesome-free/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /static/fontawesome-free/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fontawesome-free/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /static/fontawesome-free/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fontawesome-free/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fonts/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fonts/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fonts/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fonts/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fonts/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fonts/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fonts/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fonts/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fonts/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/fonts/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /static/images/Certificate/Dr.Ayesha_Certificate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/Certificate/Dr.Ayesha_Certificate.png -------------------------------------------------------------------------------- /static/images/Certificate/Dr.Fahad_Certificate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/Certificate/Dr.Fahad_Certificate.png -------------------------------------------------------------------------------- /static/images/Certificate/Dr.Jawwad_Certificate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/Certificate/Dr.Jawwad_Certificate.png -------------------------------------------------------------------------------- /static/images/Certificate/Dr.Moumy_Certificate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/Certificate/Dr.Moumy_Certificate.png -------------------------------------------------------------------------------- /static/images/Certificate/Dr.Nafisa_Certificate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/Certificate/Dr.Nafisa_Certificate.png -------------------------------------------------------------------------------- /static/images/Certificate/Dr.Pranto_Certificate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/Certificate/Dr.Pranto_Certificate.png -------------------------------------------------------------------------------- /static/images/Certificate/Dr.Pranto_Certificate_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/Certificate/Dr.Pranto_Certificate_2.png -------------------------------------------------------------------------------- /static/images/admin/jawwad2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/admin/jawwad2.jpg -------------------------------------------------------------------------------- /static/images/admin/user-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/admin/user-default.png -------------------------------------------------------------------------------- /static/images/departments/ann.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/ann.jpg -------------------------------------------------------------------------------- /static/images/departments/can.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/can.jpg -------------------------------------------------------------------------------- /static/images/departments/can_YXPO7FN.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/can_YXPO7FN.jpg -------------------------------------------------------------------------------- /static/images/departments/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/car.png -------------------------------------------------------------------------------- /static/images/departments/car_aAEQ8lK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/car_aAEQ8lK.png -------------------------------------------------------------------------------- /static/images/departments/car_br3eAwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/car_br3eAwn.png -------------------------------------------------------------------------------- /static/images/departments/car_jrUzoBS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/car_jrUzoBS.png -------------------------------------------------------------------------------- /static/images/departments/cardiologist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/cardiologist.png -------------------------------------------------------------------------------- /static/images/departments/cardiologist_9K0DiK9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/cardiologist_9K0DiK9.png -------------------------------------------------------------------------------- /static/images/departments/cardiologist_CvhaG2W.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/cardiologist_CvhaG2W.png -------------------------------------------------------------------------------- /static/images/departments/cardiologist_SGOrgvO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/cardiologist_SGOrgvO.png -------------------------------------------------------------------------------- /static/images/departments/cardiologist_lD3n6zS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/cardiologist_lD3n6zS.png -------------------------------------------------------------------------------- /static/images/departments/cardiologist_lWPZtIi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/cardiologist_lWPZtIi.png -------------------------------------------------------------------------------- /static/images/departments/cardiologist_r5gtbHv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/cardiologist_r5gtbHv.png -------------------------------------------------------------------------------- /static/images/departments/cardiologist_rbv7w69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/cardiologist_rbv7w69.png -------------------------------------------------------------------------------- /static/images/departments/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/default.png -------------------------------------------------------------------------------- /static/images/departments/den.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/den.jpg -------------------------------------------------------------------------------- /static/images/departments/dentist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/dentist.png -------------------------------------------------------------------------------- /static/images/departments/ent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/ent.jpg -------------------------------------------------------------------------------- /static/images/departments/neuro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/neuro.jpg -------------------------------------------------------------------------------- /static/images/departments/neurology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/neurology.png -------------------------------------------------------------------------------- /static/images/departments/neurology_CjEtvlJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/neurology_CjEtvlJ.png -------------------------------------------------------------------------------- /static/images/departments/neurology_rgCFmr8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/neurology_rgCFmr8.png -------------------------------------------------------------------------------- /static/images/departments/orthopedic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/orthopedic.png -------------------------------------------------------------------------------- /static/images/departments/orthopedic_v2JojD4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/orthopedic_v2JojD4.png -------------------------------------------------------------------------------- /static/images/departments/specialities-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/specialities-01.png -------------------------------------------------------------------------------- /static/images/departments/specialities-01_xw9sTim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/specialities-01_xw9sTim.png -------------------------------------------------------------------------------- /static/images/departments/specialities-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/specialities-02.png -------------------------------------------------------------------------------- /static/images/departments/specialities-02_CfR8Hvj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/specialities-02_CfR8Hvj.png -------------------------------------------------------------------------------- /static/images/departments/specialities-02_MmnEX8b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/specialities-02_MmnEX8b.png -------------------------------------------------------------------------------- /static/images/departments/specialities-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/specialities-03.png -------------------------------------------------------------------------------- /static/images/departments/specialities-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/specialities-04.png -------------------------------------------------------------------------------- /static/images/departments/specialities-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/specialities-05.png -------------------------------------------------------------------------------- /static/images/departments/urology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/urology.png -------------------------------------------------------------------------------- /static/images/departments/urology_6Xds6AN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/urology_6Xds6AN.png -------------------------------------------------------------------------------- /static/images/departments/urology_9aYFmVb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/urology_9aYFmVb.png -------------------------------------------------------------------------------- /static/images/departments/urology_E7aza0W.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/urology_E7aza0W.png -------------------------------------------------------------------------------- /static/images/departments/urology_I2OLlSH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/urology_I2OLlSH.png -------------------------------------------------------------------------------- /static/images/departments/urology_QwdRLpQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/urology_QwdRLpQ.png -------------------------------------------------------------------------------- /static/images/departments/urology_ZS4EEmK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/urology_ZS4EEmK.png -------------------------------------------------------------------------------- /static/images/departments/urology_yznAne2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/departments/urology_yznAne2.png -------------------------------------------------------------------------------- /static/images/doctors/Aysha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/doctors/Aysha.png -------------------------------------------------------------------------------- /static/images/doctors/Jawwad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/doctors/Jawwad.png -------------------------------------------------------------------------------- /static/images/doctors/Pranto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/doctors/Pranto.png -------------------------------------------------------------------------------- /static/images/doctors/Tarin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/doctors/Tarin.png -------------------------------------------------------------------------------- /static/images/doctors/doctor-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/doctors/doctor-01.jpg -------------------------------------------------------------------------------- /static/images/doctors/jawwad2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/doctors/jawwad2.jpg -------------------------------------------------------------------------------- /static/images/doctors/moumy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/doctors/moumy.png -------------------------------------------------------------------------------- /static/images/doctors/rafi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/doctors/rafi.jpg -------------------------------------------------------------------------------- /static/images/doctors/user-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/doctors/user-default.png -------------------------------------------------------------------------------- /static/images/doctors_certificate/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/doctors_certificate/default.png -------------------------------------------------------------------------------- /static/images/hospitals/1519800123757.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/hospitals/1519800123757.jpg -------------------------------------------------------------------------------- /static/images/hospitals/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/hospitals/default.png -------------------------------------------------------------------------------- /static/images/hospitals/labaid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/hospitals/labaid.jpg -------------------------------------------------------------------------------- /static/images/hospitals/square-hospital.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/hospitals/square-hospital.jpg -------------------------------------------------------------------------------- /static/images/hospitals/united_hospital.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/hospitals/united_hospital.jpg -------------------------------------------------------------------------------- /static/images/medicines/Alatrol-Tablet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/medicines/Alatrol-Tablet.jpg -------------------------------------------------------------------------------- /static/images/medicines/Alatrol-Tablet_Tmp1WFC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/medicines/Alatrol-Tablet_Tmp1WFC.jpg -------------------------------------------------------------------------------- /static/images/medicines/Alatrol-Tablet_zb8mVnI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/medicines/Alatrol-Tablet_zb8mVnI.jpg -------------------------------------------------------------------------------- /static/images/medicines/Alcet 5mg Tab-400x400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/medicines/Alcet 5mg Tab-400x400.jpg -------------------------------------------------------------------------------- /static/images/medicines/Alcet_5mg_Tab-400x400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/medicines/Alcet_5mg_Tab-400x400.jpg -------------------------------------------------------------------------------- /static/images/medicines/Alcet_5mg_Tab-400x400_jChl0bd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/medicines/Alcet_5mg_Tab-400x400_jChl0bd.jpg -------------------------------------------------------------------------------- /static/images/medicines/Cosec-Capsule-20-mg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/medicines/Cosec-Capsule-20-mg.jpg -------------------------------------------------------------------------------- /static/images/medicines/Cosec-Capsule-20-mg_Pfdc7oQ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/medicines/Cosec-Capsule-20-mg_Pfdc7oQ.jpg -------------------------------------------------------------------------------- /static/images/medicines/Seclo-20mg-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/medicines/Seclo-20mg-1.jpg -------------------------------------------------------------------------------- /static/images/medicines/Seclo-20mg-1_Rg3yOrg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/medicines/Seclo-20mg-1_Rg3yOrg.jpg -------------------------------------------------------------------------------- /static/images/medicines/Seclo-20mg-1_sj212wl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/medicines/Seclo-20mg-1_sj212wl.jpg -------------------------------------------------------------------------------- /static/images/medicines/bg_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/medicines/bg_1.jpg -------------------------------------------------------------------------------- /static/images/medicines/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/medicines/default.png -------------------------------------------------------------------------------- /static/images/medicines/medicen-121-scaled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/medicines/medicen-121-scaled.jpg -------------------------------------------------------------------------------- /static/images/medicines/medicen-121-scaled_1pLDm85.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/medicines/medicen-121-scaled_1pLDm85.jpg -------------------------------------------------------------------------------- /static/images/medicines/medicen-121-scaled_Wzl5hvs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/medicines/medicen-121-scaled_Wzl5hvs.jpg -------------------------------------------------------------------------------- /static/images/medicines/medicen-121-scaled_cPXsVSx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/medicines/medicen-121-scaled_cPXsVSx.jpg -------------------------------------------------------------------------------- /static/images/patients/Prisma_diagram_-_Page_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/patients/Prisma_diagram_-_Page_2.png -------------------------------------------------------------------------------- /static/images/patients/faiyaz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/patients/faiyaz.jpg -------------------------------------------------------------------------------- /static/images/patients/mimo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/patients/mimo.jpg -------------------------------------------------------------------------------- /static/images/patients/nowshin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/patients/nowshin.jpg -------------------------------------------------------------------------------- /static/images/patients/user-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/patients/user-default.png -------------------------------------------------------------------------------- /static/images/pharmacist/user-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/pharmacist/user-default.png -------------------------------------------------------------------------------- /static/images/technician/Roronoa_Zoro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/technician/Roronoa_Zoro.jpg -------------------------------------------------------------------------------- /static/images/technician/Roronoa_Zoro_bYH5yVi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/technician/Roronoa_Zoro_bYH5yVi.jpg -------------------------------------------------------------------------------- /static/images/technician/jill2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/technician/jill2.png -------------------------------------------------------------------------------- /static/images/technician/user-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/images/technician/user-default.png -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/jquery-3.6.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/js/jquery-3.6.0.min.js -------------------------------------------------------------------------------- /static/js/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/js/jquery-ui.js -------------------------------------------------------------------------------- /static/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/js/popper.min.js -------------------------------------------------------------------------------- /static/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/static/js/script.js -------------------------------------------------------------------------------- /templates/Extras/blank-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/Extras/blank-page.html -------------------------------------------------------------------------------- /templates/Extras/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/Extras/calendar.html -------------------------------------------------------------------------------- /templates/Extras/components.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/Extras/components.html -------------------------------------------------------------------------------- /templates/Extras/favourites.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/Extras/favourites.html -------------------------------------------------------------------------------- /templates/Extras/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/Extras/index.html -------------------------------------------------------------------------------- /templates/Extras/invoice-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/Extras/invoice-view.html -------------------------------------------------------------------------------- /templates/Extras/invoices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/Extras/invoices.html -------------------------------------------------------------------------------- /templates/Extras/reviews.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/Extras/reviews.html -------------------------------------------------------------------------------- /templates/Extras/social-media.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/Extras/social-media.html -------------------------------------------------------------------------------- /templates/Extras/term-condition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/Extras/term-condition.html -------------------------------------------------------------------------------- /templates/Extras/video-call.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/Extras/video-call.html -------------------------------------------------------------------------------- /templates/Extras/voice-call.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/Extras/voice-call.html -------------------------------------------------------------------------------- /templates/Pharmacy/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/Pharmacy/cart.html -------------------------------------------------------------------------------- /templates/Pharmacy/checkout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/Pharmacy/checkout.html -------------------------------------------------------------------------------- /templates/Pharmacy/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/Pharmacy/message.html -------------------------------------------------------------------------------- /templates/Pharmacy/product-single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/Pharmacy/product-single.html -------------------------------------------------------------------------------- /templates/Pharmacy/shop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/Pharmacy/shop.html -------------------------------------------------------------------------------- /templates/about-us.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/about-us.html -------------------------------------------------------------------------------- /templates/add-billing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/add-billing.html -------------------------------------------------------------------------------- /templates/appointment-request-mail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/appointment-request-mail.html -------------------------------------------------------------------------------- /templates/appointment_accept_mail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/appointment_accept_mail.html -------------------------------------------------------------------------------- /templates/appointment_mail_payment_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/appointment_mail_payment_template.html -------------------------------------------------------------------------------- /templates/appointment_reject_mail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/appointment_reject_mail.html -------------------------------------------------------------------------------- /templates/appointments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/appointments.html -------------------------------------------------------------------------------- /templates/booking-success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/booking-success.html -------------------------------------------------------------------------------- /templates/booking.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/booking.html -------------------------------------------------------------------------------- /templates/cancel.html: -------------------------------------------------------------------------------- 1 |

Cancel

2 | -------------------------------------------------------------------------------- /templates/change-password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/change-password.html -------------------------------------------------------------------------------- /templates/chat-doctor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/chat-doctor.html -------------------------------------------------------------------------------- /templates/chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/chat.html -------------------------------------------------------------------------------- /templates/chat/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/chat/base.html -------------------------------------------------------------------------------- /templates/chat/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/chat/home.html -------------------------------------------------------------------------------- /templates/chat/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/chat/login.html -------------------------------------------------------------------------------- /templates/chat/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/chat/logout.html -------------------------------------------------------------------------------- /templates/chat/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/chat/profile.html -------------------------------------------------------------------------------- /templates/chat/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/chat/register.html -------------------------------------------------------------------------------- /templates/checkout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/checkout.html -------------------------------------------------------------------------------- /templates/create-prescription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/create-prescription.html -------------------------------------------------------------------------------- /templates/data-table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/data-table.html -------------------------------------------------------------------------------- /templates/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/demo.html -------------------------------------------------------------------------------- /templates/doctor-change-password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/doctor-change-password.html -------------------------------------------------------------------------------- /templates/doctor-dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/doctor-dashboard.html -------------------------------------------------------------------------------- /templates/doctor-login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/doctor-login.html -------------------------------------------------------------------------------- /templates/doctor-navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/doctor-navbar.html -------------------------------------------------------------------------------- /templates/doctor-profile-settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/doctor-profile-settings.html -------------------------------------------------------------------------------- /templates/doctor-profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/doctor-profile.html -------------------------------------------------------------------------------- /templates/doctor-register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/doctor-register.html -------------------------------------------------------------------------------- /templates/doctor-sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/doctor-sidebar.html -------------------------------------------------------------------------------- /templates/doctor-test-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/doctor-test-list.html -------------------------------------------------------------------------------- /templates/doctor-view-prescription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/doctor-view-prescription.html -------------------------------------------------------------------------------- /templates/doctor-view-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/doctor-view-report.html -------------------------------------------------------------------------------- /templates/edit-billing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/edit-billing.html -------------------------------------------------------------------------------- /templates/fail.html: -------------------------------------------------------------------------------- 1 |

Your Payment Failed Please try again!

2 | -------------------------------------------------------------------------------- /templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/footer.html -------------------------------------------------------------------------------- /templates/hospital-department.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital-department.html -------------------------------------------------------------------------------- /templates/hospital-doctor-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital-doctor-list.html -------------------------------------------------------------------------------- /templates/hospital-doctor-register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital-doctor-register.html -------------------------------------------------------------------------------- /templates/hospital-profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital-profile.html -------------------------------------------------------------------------------- /templates/hospital_admin/Pending-doctor-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/Pending-doctor-list.html -------------------------------------------------------------------------------- /templates/hospital_admin/accept-doctor-mail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/accept-doctor-mail.html -------------------------------------------------------------------------------- /templates/hospital_admin/add-hospital.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/add-hospital.html -------------------------------------------------------------------------------- /templates/hospital_admin/add-lab-worker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/add-lab-worker.html -------------------------------------------------------------------------------- /templates/hospital_admin/add-medicine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/add-medicine.html -------------------------------------------------------------------------------- /templates/hospital_admin/add-pharmacist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/add-pharmacist.html -------------------------------------------------------------------------------- /templates/hospital_admin/add-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/add-test.html -------------------------------------------------------------------------------- /templates/hospital_admin/admin-dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/admin-dashboard.html -------------------------------------------------------------------------------- /templates/hospital_admin/appointment-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/appointment-list.html -------------------------------------------------------------------------------- /templates/hospital_admin/create-invoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/create-invoice.html -------------------------------------------------------------------------------- /templates/hospital_admin/create-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/create-report.html -------------------------------------------------------------------------------- /templates/hospital_admin/department-image-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/department-image-list.html -------------------------------------------------------------------------------- /templates/hospital_admin/doctor-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/doctor-list.html -------------------------------------------------------------------------------- /templates/hospital_admin/doctor-profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/doctor-profile.html -------------------------------------------------------------------------------- /templates/hospital_admin/edit-emergency-information.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/edit-emergency-information.html -------------------------------------------------------------------------------- /templates/hospital_admin/edit-hospital.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/edit-hospital.html -------------------------------------------------------------------------------- /templates/hospital_admin/edit-lab-worker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/edit-lab-worker.html -------------------------------------------------------------------------------- /templates/hospital_admin/edit-medicine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/edit-medicine.html -------------------------------------------------------------------------------- /templates/hospital_admin/edit-pharmacist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/edit-pharmacist.html -------------------------------------------------------------------------------- /templates/hospital_admin/emergency.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/emergency.html -------------------------------------------------------------------------------- /templates/hospital_admin/forgot-password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/forgot-password.html -------------------------------------------------------------------------------- /templates/hospital_admin/hospital-admin-navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/hospital-admin-navbar.html -------------------------------------------------------------------------------- /templates/hospital_admin/hospital-admin-profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/hospital-admin-profile.html -------------------------------------------------------------------------------- /templates/hospital_admin/hospital-admin-sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/hospital-admin-sidebar.html -------------------------------------------------------------------------------- /templates/hospital_admin/hospital-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/hospital-list.html -------------------------------------------------------------------------------- /templates/hospital_admin/invoice-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/invoice-report.html -------------------------------------------------------------------------------- /templates/hospital_admin/invoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/invoice.html -------------------------------------------------------------------------------- /templates/hospital_admin/lab-worker-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/lab-worker-list.html -------------------------------------------------------------------------------- /templates/hospital_admin/labworker-dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/labworker-dashboard.html -------------------------------------------------------------------------------- /templates/hospital_admin/labworker-navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/labworker-navbar.html -------------------------------------------------------------------------------- /templates/hospital_admin/labworker-sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/labworker-sidebar.html -------------------------------------------------------------------------------- /templates/hospital_admin/lock-screen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/lock-screen.html -------------------------------------------------------------------------------- /templates/hospital_admin/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/login.html -------------------------------------------------------------------------------- /templates/hospital_admin/medicine-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/medicine-list.html -------------------------------------------------------------------------------- /templates/hospital_admin/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/message.html -------------------------------------------------------------------------------- /templates/hospital_admin/mypatient-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/mypatient-list.html -------------------------------------------------------------------------------- /templates/hospital_admin/patient-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/patient-list.html -------------------------------------------------------------------------------- /templates/hospital_admin/pharmacist-dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/pharmacist-dashboard.html -------------------------------------------------------------------------------- /templates/hospital_admin/pharmacist-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/pharmacist-list.html -------------------------------------------------------------------------------- /templates/hospital_admin/pharmacist-navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/pharmacist-navbar.html -------------------------------------------------------------------------------- /templates/hospital_admin/pharmacist-sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/pharmacist-sidebar.html -------------------------------------------------------------------------------- /templates/hospital_admin/prescription-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/prescription-list.html -------------------------------------------------------------------------------- /templates/hospital_admin/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/profile.html -------------------------------------------------------------------------------- /templates/hospital_admin/register-doctor-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/register-doctor-list.html -------------------------------------------------------------------------------- /templates/hospital_admin/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/register.html -------------------------------------------------------------------------------- /templates/hospital_admin/reject-doctor-mail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/reject-doctor-mail.html -------------------------------------------------------------------------------- /templates/hospital_admin/report-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/report-list.html -------------------------------------------------------------------------------- /templates/hospital_admin/report-mail-delivery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/report-mail-delivery.html -------------------------------------------------------------------------------- /templates/hospital_admin/test-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/test-list.html -------------------------------------------------------------------------------- /templates/hospital_admin/transactions-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/hospital_admin/transactions-list.html -------------------------------------------------------------------------------- /templates/index-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/index-2.html -------------------------------------------------------------------------------- /templates/ipn.html: -------------------------------------------------------------------------------- 1 |

IPN

2 | -------------------------------------------------------------------------------- /templates/mail_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/mail_template.html -------------------------------------------------------------------------------- /templates/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/message.html -------------------------------------------------------------------------------- /templates/multiple-hospital.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/multiple-hospital.html -------------------------------------------------------------------------------- /templates/my-patients.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/my-patients.html -------------------------------------------------------------------------------- /templates/navbar_home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/navbar_home.html -------------------------------------------------------------------------------- /templates/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/pagination.html -------------------------------------------------------------------------------- /templates/patient-dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/patient-dashboard.html -------------------------------------------------------------------------------- /templates/patient-id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/patient-id.html -------------------------------------------------------------------------------- /templates/patient-login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/patient-login.html -------------------------------------------------------------------------------- /templates/patient-profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/patient-profile.html -------------------------------------------------------------------------------- /templates/patient-register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/patient-register.html -------------------------------------------------------------------------------- /templates/patient-sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/patient-sidebar.html -------------------------------------------------------------------------------- /templates/patient_navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/patient_navbar.html -------------------------------------------------------------------------------- /templates/payment_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/payment_index.html -------------------------------------------------------------------------------- /templates/pharmacy_mail_payment_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/pharmacy_mail_payment_template.html -------------------------------------------------------------------------------- /templates/prescription-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/prescription-view.html -------------------------------------------------------------------------------- /templates/prescription_pdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/prescription_pdf.html -------------------------------------------------------------------------------- /templates/privacy-policy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/privacy-policy.html -------------------------------------------------------------------------------- /templates/profile-settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/profile-settings.html -------------------------------------------------------------------------------- /templates/report_pdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/report_pdf.html -------------------------------------------------------------------------------- /templates/reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/reset.html -------------------------------------------------------------------------------- /templates/reset_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/reset_password.html -------------------------------------------------------------------------------- /templates/reset_password_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/reset_password_complete.html -------------------------------------------------------------------------------- /templates/reset_password_sent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/reset_password_sent.html -------------------------------------------------------------------------------- /templates/schedule-timings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/schedule-timings.html -------------------------------------------------------------------------------- /templates/search-hospitals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/search-hospitals.html -------------------------------------------------------------------------------- /templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/search.html -------------------------------------------------------------------------------- /templates/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/success.html -------------------------------------------------------------------------------- /templates/test-cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/test-cart.html -------------------------------------------------------------------------------- /templates/test_mail_payment_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/test_mail_payment_template.html -------------------------------------------------------------------------------- /templates/testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/testing.html -------------------------------------------------------------------------------- /templates/view-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/templates/view-report.html -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jawwad-Fida/HealthStack-System/HEAD/test.py --------------------------------------------------------------------------------