├── .gitignore ├── .htaccess ├── 404.php ├── README.md ├── admin ├── .htaccess ├── admin-add.php ├── admin-edit.php ├── admin.php ├── appointment.php ├── clinic-add.php ├── clinic-edit.php ├── clinic-list.php ├── clinic-view.php ├── doctor-add.php ├── doctor-list.php ├── includes │ ├── path.inc.php │ └── session.inc.php ├── index.php ├── layouts │ ├── 404.php │ ├── nav_header.php │ ├── navigate.php │ └── widget.php ├── login.php ├── logout.php ├── patient-add.php ├── patient-list.php ├── patient-view.php └── speciality.php ├── assets ├── css │ ├── all.min.css │ ├── animate.css │ ├── bootstrap-datepicker.min.css │ ├── bootstrap-datetimepicker.min.css │ ├── bootstrap-select.min.css │ ├── bootstrap.min.css │ ├── clinic │ │ ├── gijgo.min.css │ │ ├── index.css │ │ ├── login.css │ │ ├── schedule.css │ │ └── style.css │ ├── dataTables.bootstrap4.min.css │ ├── default.css │ ├── metisMenu.min.css │ ├── owl.carousel.min.css │ ├── owl.theme.default.min.css │ ├── sweetalert2.min.css │ ├── themify-icons.css │ └── typography.css ├── fonts │ ├── themify.eot │ ├── themify.svg │ ├── themify.ttf │ └── themify.woff ├── img │ ├── app-banner.webp │ ├── background.jpg │ ├── clinic-letter.png │ ├── clinic.png │ ├── doctor.jpg │ ├── empty │ │ ├── empty-avatar.jpg │ │ └── empty-image.png │ ├── getty_patient_care.jpg │ ├── google-play.png │ ├── icon │ │ └── favicon.ico │ ├── literature-review.png │ ├── login-cover.jpg │ ├── register-cover.jpg │ └── widget │ │ ├── checkup.png │ │ ├── usergroup.png │ │ └── users.svg ├── js │ ├── bootstrap-datepicker.min.js │ ├── bootstrap-datetimepicker.min.js │ ├── bootstrap-select.min.js │ ├── bootstrap.bundle.min.js │ ├── bootstrap.min.js │ ├── dataTables.bootstrap4.min.js │ ├── jquery-3.4.1.min.js │ ├── jquery.dataTables.min.js │ ├── metismenu.js │ ├── modernizr-2.8.3.min.js │ ├── moment.min.js │ ├── owl.carousel.min.js │ ├── popper.min.js │ ├── scripts.js │ ├── sweetalert2.all.min.js │ └── validation.js └── 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 ├── clinic ├── admin.php ├── announcement.php ├── appointment.php ├── clinic-register.php ├── doctor-add.php ├── doctor-list.php ├── doctor-view.php ├── forgot.php ├── includes │ ├── path.inc.php │ └── session.inc.php ├── index.php ├── layouts │ ├── nav_header.php │ ├── navigate.php │ └── widget.php ├── loadAppointment.php ├── loadReport.php ├── login.php ├── logout.php ├── patient-add.php ├── patient-list.php ├── patient-view.php ├── profile-edit.php ├── profile.php ├── register.php ├── report.php ├── reset.php └── updateArrive.php ├── clinic_appointment.sql ├── config ├── .htaccess ├── autoload.php ├── config.php ├── database.php ├── path_css.php ├── path_script.php ├── security.php └── validator.php ├── doctor ├── activate.php ├── appointment-view.php ├── appointment.php ├── doctor-edit.php ├── doctor.php ├── forgot.php ├── includes │ ├── path.inc.php │ └── session.inc.php ├── index.php ├── layouts │ ├── nav_header.php │ ├── navigate.php │ └── widget.php ├── loadAppointment.php ├── loadReport.php ├── loadSchedule.php ├── login.php ├── logout.php ├── password.php ├── patient-list.php ├── patient-view.php ├── report.php ├── reset.php ├── review.php ├── sch-edit.php ├── sch-list.php └── treatment.php ├── helper ├── .htaccess ├── email.helper.php └── select_helper.php ├── index.php ├── patient ├── app.php ├── appointment-cancel.php ├── appointment-confirm.php ├── appointment-list.php ├── appointment-view.php ├── appointment.php ├── available.php ├── business_hour.php ├── clinic_image.php ├── clinic_profile.php ├── doctor_profile.php ├── forgot.php ├── login.php ├── medical_record.php ├── message.php ├── profile-address.php ├── profile-edit.php ├── profile-password.php ├── profile.php ├── register.php ├── reset.php ├── result_clinic.php ├── result_doctor.php ├── resultfilter_doctor.php ├── review-details.php ├── review.php ├── select.php ├── speciality.php ├── speciality_count.php ├── speciality_result.php ├── treatment-type.php └── uploads │ └── empty │ └── empty-avatar.jpg └── uploads └── icons ├── acupuncture.png ├── anaesthetist.png ├── dentist.png ├── family.png ├── hearing.png └── optometrist.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/.htaccess -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/404.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/README.md -------------------------------------------------------------------------------- /admin/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/admin/.htaccess -------------------------------------------------------------------------------- /admin/admin-add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/admin/admin-add.php -------------------------------------------------------------------------------- /admin/admin-edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/admin/admin-edit.php -------------------------------------------------------------------------------- /admin/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/admin/admin.php -------------------------------------------------------------------------------- /admin/appointment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/admin/appointment.php -------------------------------------------------------------------------------- /admin/clinic-add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/admin/clinic-add.php -------------------------------------------------------------------------------- /admin/clinic-edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/admin/clinic-edit.php -------------------------------------------------------------------------------- /admin/clinic-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/admin/clinic-list.php -------------------------------------------------------------------------------- /admin/clinic-view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/admin/clinic-view.php -------------------------------------------------------------------------------- /admin/doctor-add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/admin/doctor-add.php -------------------------------------------------------------------------------- /admin/doctor-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/admin/doctor-list.php -------------------------------------------------------------------------------- /admin/includes/path.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/admin/includes/path.inc.php -------------------------------------------------------------------------------- /admin/includes/session.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/admin/includes/session.inc.php -------------------------------------------------------------------------------- /admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/admin/index.php -------------------------------------------------------------------------------- /admin/layouts/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/admin/layouts/404.php -------------------------------------------------------------------------------- /admin/layouts/nav_header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/admin/layouts/nav_header.php -------------------------------------------------------------------------------- /admin/layouts/navigate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/admin/layouts/navigate.php -------------------------------------------------------------------------------- /admin/layouts/widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/admin/layouts/widget.php -------------------------------------------------------------------------------- /admin/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/admin/login.php -------------------------------------------------------------------------------- /admin/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/admin/logout.php -------------------------------------------------------------------------------- /admin/patient-add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/admin/patient-add.php -------------------------------------------------------------------------------- /admin/patient-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/admin/patient-list.php -------------------------------------------------------------------------------- /admin/patient-view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/admin/patient-view.php -------------------------------------------------------------------------------- /admin/speciality.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/admin/speciality.php -------------------------------------------------------------------------------- /assets/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/css/all.min.css -------------------------------------------------------------------------------- /assets/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/css/animate.css -------------------------------------------------------------------------------- /assets/css/bootstrap-datepicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/css/bootstrap-datepicker.min.css -------------------------------------------------------------------------------- /assets/css/bootstrap-datetimepicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/css/bootstrap-datetimepicker.min.css -------------------------------------------------------------------------------- /assets/css/bootstrap-select.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/css/bootstrap-select.min.css -------------------------------------------------------------------------------- /assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /assets/css/clinic/gijgo.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/css/clinic/gijgo.min.css -------------------------------------------------------------------------------- /assets/css/clinic/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/css/clinic/index.css -------------------------------------------------------------------------------- /assets/css/clinic/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/css/clinic/login.css -------------------------------------------------------------------------------- /assets/css/clinic/schedule.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/css/clinic/schedule.css -------------------------------------------------------------------------------- /assets/css/clinic/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/css/clinic/style.css -------------------------------------------------------------------------------- /assets/css/dataTables.bootstrap4.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/css/dataTables.bootstrap4.min.css -------------------------------------------------------------------------------- /assets/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/css/default.css -------------------------------------------------------------------------------- /assets/css/metisMenu.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/css/metisMenu.min.css -------------------------------------------------------------------------------- /assets/css/owl.carousel.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/css/owl.carousel.min.css -------------------------------------------------------------------------------- /assets/css/owl.theme.default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/css/owl.theme.default.min.css -------------------------------------------------------------------------------- /assets/css/sweetalert2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/css/sweetalert2.min.css -------------------------------------------------------------------------------- /assets/css/themify-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/css/themify-icons.css -------------------------------------------------------------------------------- /assets/css/typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/css/typography.css -------------------------------------------------------------------------------- /assets/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/fonts/themify.eot -------------------------------------------------------------------------------- /assets/fonts/themify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/fonts/themify.svg -------------------------------------------------------------------------------- /assets/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/fonts/themify.ttf -------------------------------------------------------------------------------- /assets/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/fonts/themify.woff -------------------------------------------------------------------------------- /assets/img/app-banner.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/img/app-banner.webp -------------------------------------------------------------------------------- /assets/img/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/img/background.jpg -------------------------------------------------------------------------------- /assets/img/clinic-letter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/img/clinic-letter.png -------------------------------------------------------------------------------- /assets/img/clinic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/img/clinic.png -------------------------------------------------------------------------------- /assets/img/doctor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/img/doctor.jpg -------------------------------------------------------------------------------- /assets/img/empty/empty-avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/img/empty/empty-avatar.jpg -------------------------------------------------------------------------------- /assets/img/empty/empty-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/img/empty/empty-image.png -------------------------------------------------------------------------------- /assets/img/getty_patient_care.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/img/getty_patient_care.jpg -------------------------------------------------------------------------------- /assets/img/google-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/img/google-play.png -------------------------------------------------------------------------------- /assets/img/icon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/img/icon/favicon.ico -------------------------------------------------------------------------------- /assets/img/literature-review.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/img/literature-review.png -------------------------------------------------------------------------------- /assets/img/login-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/img/login-cover.jpg -------------------------------------------------------------------------------- /assets/img/register-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/img/register-cover.jpg -------------------------------------------------------------------------------- /assets/img/widget/checkup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/img/widget/checkup.png -------------------------------------------------------------------------------- /assets/img/widget/usergroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/img/widget/usergroup.png -------------------------------------------------------------------------------- /assets/img/widget/users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/img/widget/users.svg -------------------------------------------------------------------------------- /assets/js/bootstrap-datepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/js/bootstrap-datepicker.min.js -------------------------------------------------------------------------------- /assets/js/bootstrap-datetimepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/js/bootstrap-datetimepicker.min.js -------------------------------------------------------------------------------- /assets/js/bootstrap-select.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/js/bootstrap-select.min.js -------------------------------------------------------------------------------- /assets/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /assets/js/dataTables.bootstrap4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/js/dataTables.bootstrap4.min.js -------------------------------------------------------------------------------- /assets/js/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/js/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /assets/js/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/js/jquery.dataTables.min.js -------------------------------------------------------------------------------- /assets/js/metismenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/js/metismenu.js -------------------------------------------------------------------------------- /assets/js/modernizr-2.8.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/js/modernizr-2.8.3.min.js -------------------------------------------------------------------------------- /assets/js/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/js/moment.min.js -------------------------------------------------------------------------------- /assets/js/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/js/owl.carousel.min.js -------------------------------------------------------------------------------- /assets/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/js/popper.min.js -------------------------------------------------------------------------------- /assets/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/js/scripts.js -------------------------------------------------------------------------------- /assets/js/sweetalert2.all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/js/sweetalert2.all.min.js -------------------------------------------------------------------------------- /assets/js/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/js/validation.js -------------------------------------------------------------------------------- /assets/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /assets/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /assets/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /assets/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /assets/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /assets/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /assets/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /assets/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /assets/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /assets/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /assets/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /assets/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /assets/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /assets/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /assets/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/assets/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /clinic/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/clinic/admin.php -------------------------------------------------------------------------------- /clinic/announcement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/clinic/announcement.php -------------------------------------------------------------------------------- /clinic/appointment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/clinic/appointment.php -------------------------------------------------------------------------------- /clinic/clinic-register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/clinic/clinic-register.php -------------------------------------------------------------------------------- /clinic/doctor-add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/clinic/doctor-add.php -------------------------------------------------------------------------------- /clinic/doctor-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/clinic/doctor-list.php -------------------------------------------------------------------------------- /clinic/doctor-view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/clinic/doctor-view.php -------------------------------------------------------------------------------- /clinic/forgot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/clinic/forgot.php -------------------------------------------------------------------------------- /clinic/includes/path.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/clinic/includes/path.inc.php -------------------------------------------------------------------------------- /clinic/includes/session.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/clinic/includes/session.inc.php -------------------------------------------------------------------------------- /clinic/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/clinic/index.php -------------------------------------------------------------------------------- /clinic/layouts/nav_header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/clinic/layouts/nav_header.php -------------------------------------------------------------------------------- /clinic/layouts/navigate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/clinic/layouts/navigate.php -------------------------------------------------------------------------------- /clinic/layouts/widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/clinic/layouts/widget.php -------------------------------------------------------------------------------- /clinic/loadAppointment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/clinic/loadAppointment.php -------------------------------------------------------------------------------- /clinic/loadReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/clinic/loadReport.php -------------------------------------------------------------------------------- /clinic/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/clinic/login.php -------------------------------------------------------------------------------- /clinic/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/clinic/logout.php -------------------------------------------------------------------------------- /clinic/patient-add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/clinic/patient-add.php -------------------------------------------------------------------------------- /clinic/patient-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/clinic/patient-list.php -------------------------------------------------------------------------------- /clinic/patient-view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/clinic/patient-view.php -------------------------------------------------------------------------------- /clinic/profile-edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/clinic/profile-edit.php -------------------------------------------------------------------------------- /clinic/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/clinic/profile.php -------------------------------------------------------------------------------- /clinic/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/clinic/register.php -------------------------------------------------------------------------------- /clinic/report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/clinic/report.php -------------------------------------------------------------------------------- /clinic/reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/clinic/reset.php -------------------------------------------------------------------------------- /clinic/updateArrive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/clinic/updateArrive.php -------------------------------------------------------------------------------- /clinic_appointment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/clinic_appointment.sql -------------------------------------------------------------------------------- /config/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/config/.htaccess -------------------------------------------------------------------------------- /config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/config/autoload.php -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/config/config.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/config/database.php -------------------------------------------------------------------------------- /config/path_css.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/config/path_css.php -------------------------------------------------------------------------------- /config/path_script.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/config/path_script.php -------------------------------------------------------------------------------- /config/security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/config/security.php -------------------------------------------------------------------------------- /config/validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/config/validator.php -------------------------------------------------------------------------------- /doctor/activate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/doctor/activate.php -------------------------------------------------------------------------------- /doctor/appointment-view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/doctor/appointment-view.php -------------------------------------------------------------------------------- /doctor/appointment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/doctor/appointment.php -------------------------------------------------------------------------------- /doctor/doctor-edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/doctor/doctor-edit.php -------------------------------------------------------------------------------- /doctor/doctor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/doctor/doctor.php -------------------------------------------------------------------------------- /doctor/forgot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/doctor/forgot.php -------------------------------------------------------------------------------- /doctor/includes/path.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/doctor/includes/path.inc.php -------------------------------------------------------------------------------- /doctor/includes/session.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/doctor/includes/session.inc.php -------------------------------------------------------------------------------- /doctor/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/doctor/index.php -------------------------------------------------------------------------------- /doctor/layouts/nav_header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/doctor/layouts/nav_header.php -------------------------------------------------------------------------------- /doctor/layouts/navigate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/doctor/layouts/navigate.php -------------------------------------------------------------------------------- /doctor/layouts/widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/doctor/layouts/widget.php -------------------------------------------------------------------------------- /doctor/loadAppointment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/doctor/loadAppointment.php -------------------------------------------------------------------------------- /doctor/loadReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/doctor/loadReport.php -------------------------------------------------------------------------------- /doctor/loadSchedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/doctor/loadSchedule.php -------------------------------------------------------------------------------- /doctor/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/doctor/login.php -------------------------------------------------------------------------------- /doctor/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/doctor/logout.php -------------------------------------------------------------------------------- /doctor/password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/doctor/password.php -------------------------------------------------------------------------------- /doctor/patient-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/doctor/patient-list.php -------------------------------------------------------------------------------- /doctor/patient-view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/doctor/patient-view.php -------------------------------------------------------------------------------- /doctor/report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/doctor/report.php -------------------------------------------------------------------------------- /doctor/reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/doctor/reset.php -------------------------------------------------------------------------------- /doctor/review.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/doctor/review.php -------------------------------------------------------------------------------- /doctor/sch-edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/doctor/sch-edit.php -------------------------------------------------------------------------------- /doctor/sch-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/doctor/sch-list.php -------------------------------------------------------------------------------- /doctor/treatment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/doctor/treatment.php -------------------------------------------------------------------------------- /helper/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/helper/.htaccess -------------------------------------------------------------------------------- /helper/email.helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/helper/email.helper.php -------------------------------------------------------------------------------- /helper/select_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/helper/select_helper.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/index.php -------------------------------------------------------------------------------- /patient/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/app.php -------------------------------------------------------------------------------- /patient/appointment-cancel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/appointment-cancel.php -------------------------------------------------------------------------------- /patient/appointment-confirm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/appointment-confirm.php -------------------------------------------------------------------------------- /patient/appointment-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/appointment-list.php -------------------------------------------------------------------------------- /patient/appointment-view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/appointment-view.php -------------------------------------------------------------------------------- /patient/appointment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/appointment.php -------------------------------------------------------------------------------- /patient/available.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/available.php -------------------------------------------------------------------------------- /patient/business_hour.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/business_hour.php -------------------------------------------------------------------------------- /patient/clinic_image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/clinic_image.php -------------------------------------------------------------------------------- /patient/clinic_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/clinic_profile.php -------------------------------------------------------------------------------- /patient/doctor_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/doctor_profile.php -------------------------------------------------------------------------------- /patient/forgot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/forgot.php -------------------------------------------------------------------------------- /patient/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/login.php -------------------------------------------------------------------------------- /patient/medical_record.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/medical_record.php -------------------------------------------------------------------------------- /patient/message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/message.php -------------------------------------------------------------------------------- /patient/profile-address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/profile-address.php -------------------------------------------------------------------------------- /patient/profile-edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/profile-edit.php -------------------------------------------------------------------------------- /patient/profile-password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/profile-password.php -------------------------------------------------------------------------------- /patient/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/profile.php -------------------------------------------------------------------------------- /patient/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/register.php -------------------------------------------------------------------------------- /patient/reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/reset.php -------------------------------------------------------------------------------- /patient/result_clinic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/result_clinic.php -------------------------------------------------------------------------------- /patient/result_doctor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/result_doctor.php -------------------------------------------------------------------------------- /patient/resultfilter_doctor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/resultfilter_doctor.php -------------------------------------------------------------------------------- /patient/review-details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/review-details.php -------------------------------------------------------------------------------- /patient/review.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/review.php -------------------------------------------------------------------------------- /patient/select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/select.php -------------------------------------------------------------------------------- /patient/speciality.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/speciality.php -------------------------------------------------------------------------------- /patient/speciality_count.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/speciality_count.php -------------------------------------------------------------------------------- /patient/speciality_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/speciality_result.php -------------------------------------------------------------------------------- /patient/treatment-type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/treatment-type.php -------------------------------------------------------------------------------- /patient/uploads/empty/empty-avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/patient/uploads/empty/empty-avatar.jpg -------------------------------------------------------------------------------- /uploads/icons/acupuncture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/uploads/icons/acupuncture.png -------------------------------------------------------------------------------- /uploads/icons/anaesthetist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/uploads/icons/anaesthetist.png -------------------------------------------------------------------------------- /uploads/icons/dentist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/uploads/icons/dentist.png -------------------------------------------------------------------------------- /uploads/icons/family.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/uploads/icons/family.png -------------------------------------------------------------------------------- /uploads/icons/hearing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/uploads/icons/hearing.png -------------------------------------------------------------------------------- /uploads/icons/optometrist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yh-ong/Web-Based-Clinic-Appointment-System/HEAD/uploads/icons/optometrist.png --------------------------------------------------------------------------------