├── .github ├── issue-labeler.yml └── workflows │ ├── greeting.yml │ ├── issueLabel.yml │ └── pr-checker.yaml ├── .vscode └── settings.json ├── Appointment.css ├── Backend_main ├── .gitignore ├── package-lock.json ├── package.json └── server.js ├── CODE_OF_CONDUCT.md ├── Contributing.md ├── LICENCE ├── MedicalBot ├── .gitignore ├── favicon.svg ├── index.html ├── prediction │ ├── chat.py │ ├── intents.json │ ├── main.py │ └── requirements.txt ├── script.js ├── style.css └── training-bot │ ├── intents.json │ └── train_chatbot.py ├── Readme.md ├── admin_login.html ├── appointment.html ├── blog.css ├── blog.html ├── bloodbank.html ├── bootstrap-5.3.2-dist.zip ├── bootstrap.bundle.min.js ├── bootstrap.css ├── changed name ├── compose.yaml ├── dermatology.html ├── dockerfile ├── doctor_login.html ├── faq.html ├── img ├── Background.jpg ├── Blog_diet.jpg ├── HD-wallpaper-medical-hospital.png ├── about-video.mp4 ├── bg-home.png ├── cool-w.jpg ├── cross.svg ├── facebook.png ├── faq-w.gif ├── favicon.png ├── feature-1.jpg ├── feature-2.jpg ├── feature-3.jpg ├── feature-4.jpg ├── feature-5.jpg ├── h1.jpg ├── h2.jpg ├── h3.jpg ├── h4.jpg ├── h5.jpg ├── h6.jpg ├── healthyfood-w.avif ├── helth 1.jpg ├── helth 3.jpg ├── ic.jpeg ├── ic2.jpeg ├── ic3.jpeg ├── ic4.jpeg ├── ic5.jpeg ├── ic6.jpeg ├── immune-w.jpg ├── instagram.png ├── linkedin.png ├── medical-w.gif ├── medical.gif ├── medicine-healthcare-people-conce.png ├── medicine.jpg ├── menu.svg ├── newsupdate-w.jpg ├── patientstory-w.jpg ├── portfolio-1.jpg ├── portfolio-2.jpg ├── portfolio-3.jpg ├── portfolio-4.jpg ├── portfolio-5.jpg ├── portfolio-6.jpg ├── registration.jpg ├── surgery-1822458_640.png ├── swasthya-logo.png ├── twitter.png └── youtube.png ├── index.html ├── index.js ├── login.html ├── nearby.html ├── package.json ├── pediatrics.html ├── physician.html ├── psychatry.html ├── radiology.html ├── register.html ├── reviews.html ├── script3.js ├── style.css ├── style1.css ├── style3.css ├── urology.html ├── user_login.html └── write_own_blog.html /.github/issue-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/.github/issue-labeler.yml -------------------------------------------------------------------------------- /.github/workflows/greeting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/.github/workflows/greeting.yml -------------------------------------------------------------------------------- /.github/workflows/issueLabel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/.github/workflows/issueLabel.yml -------------------------------------------------------------------------------- /.github/workflows/pr-checker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/.github/workflows/pr-checker.yaml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5503 3 | } 4 | -------------------------------------------------------------------------------- /Appointment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/Appointment.css -------------------------------------------------------------------------------- /Backend_main/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules/ -------------------------------------------------------------------------------- /Backend_main/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/Backend_main/package-lock.json -------------------------------------------------------------------------------- /Backend_main/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/Backend_main/package.json -------------------------------------------------------------------------------- /Backend_main/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/Backend_main/server.js -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/Contributing.md -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/LICENCE -------------------------------------------------------------------------------- /MedicalBot/.gitignore: -------------------------------------------------------------------------------- 1 | config.json -------------------------------------------------------------------------------- /MedicalBot/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/MedicalBot/favicon.svg -------------------------------------------------------------------------------- /MedicalBot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/MedicalBot/index.html -------------------------------------------------------------------------------- /MedicalBot/prediction/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/MedicalBot/prediction/chat.py -------------------------------------------------------------------------------- /MedicalBot/prediction/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/MedicalBot/prediction/intents.json -------------------------------------------------------------------------------- /MedicalBot/prediction/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/MedicalBot/prediction/main.py -------------------------------------------------------------------------------- /MedicalBot/prediction/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/MedicalBot/prediction/requirements.txt -------------------------------------------------------------------------------- /MedicalBot/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/MedicalBot/script.js -------------------------------------------------------------------------------- /MedicalBot/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/MedicalBot/style.css -------------------------------------------------------------------------------- /MedicalBot/training-bot/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/MedicalBot/training-bot/intents.json -------------------------------------------------------------------------------- /MedicalBot/training-bot/train_chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/MedicalBot/training-bot/train_chatbot.py -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/Readme.md -------------------------------------------------------------------------------- /admin_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/admin_login.html -------------------------------------------------------------------------------- /appointment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/appointment.html -------------------------------------------------------------------------------- /blog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/blog.css -------------------------------------------------------------------------------- /blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/blog.html -------------------------------------------------------------------------------- /bloodbank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/bloodbank.html -------------------------------------------------------------------------------- /bootstrap-5.3.2-dist.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/bootstrap-5.3.2-dist.zip -------------------------------------------------------------------------------- /bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/bootstrap.css -------------------------------------------------------------------------------- /changed name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/changed name -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/compose.yaml -------------------------------------------------------------------------------- /dermatology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/dermatology.html -------------------------------------------------------------------------------- /dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/dockerfile -------------------------------------------------------------------------------- /doctor_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/doctor_login.html -------------------------------------------------------------------------------- /faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/faq.html -------------------------------------------------------------------------------- /img/Background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/Background.jpg -------------------------------------------------------------------------------- /img/Blog_diet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/Blog_diet.jpg -------------------------------------------------------------------------------- /img/HD-wallpaper-medical-hospital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/HD-wallpaper-medical-hospital.png -------------------------------------------------------------------------------- /img/about-video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/about-video.mp4 -------------------------------------------------------------------------------- /img/bg-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/bg-home.png -------------------------------------------------------------------------------- /img/cool-w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/cool-w.jpg -------------------------------------------------------------------------------- /img/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/cross.svg -------------------------------------------------------------------------------- /img/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/facebook.png -------------------------------------------------------------------------------- /img/faq-w.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/faq-w.gif -------------------------------------------------------------------------------- /img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/favicon.png -------------------------------------------------------------------------------- /img/feature-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/feature-1.jpg -------------------------------------------------------------------------------- /img/feature-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/feature-2.jpg -------------------------------------------------------------------------------- /img/feature-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/feature-3.jpg -------------------------------------------------------------------------------- /img/feature-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/feature-4.jpg -------------------------------------------------------------------------------- /img/feature-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/feature-5.jpg -------------------------------------------------------------------------------- /img/h1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/h1.jpg -------------------------------------------------------------------------------- /img/h2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/h2.jpg -------------------------------------------------------------------------------- /img/h3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/h3.jpg -------------------------------------------------------------------------------- /img/h4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/h4.jpg -------------------------------------------------------------------------------- /img/h5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/h5.jpg -------------------------------------------------------------------------------- /img/h6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/h6.jpg -------------------------------------------------------------------------------- /img/healthyfood-w.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/healthyfood-w.avif -------------------------------------------------------------------------------- /img/helth 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/helth 1.jpg -------------------------------------------------------------------------------- /img/helth 3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/helth 3.jpg -------------------------------------------------------------------------------- /img/ic.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/ic.jpeg -------------------------------------------------------------------------------- /img/ic2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/ic2.jpeg -------------------------------------------------------------------------------- /img/ic3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/ic3.jpeg -------------------------------------------------------------------------------- /img/ic4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/ic4.jpeg -------------------------------------------------------------------------------- /img/ic5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/ic5.jpeg -------------------------------------------------------------------------------- /img/ic6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/ic6.jpeg -------------------------------------------------------------------------------- /img/immune-w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/immune-w.jpg -------------------------------------------------------------------------------- /img/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/instagram.png -------------------------------------------------------------------------------- /img/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/linkedin.png -------------------------------------------------------------------------------- /img/medical-w.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/medical-w.gif -------------------------------------------------------------------------------- /img/medical.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/medical.gif -------------------------------------------------------------------------------- /img/medicine-healthcare-people-conce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/medicine-healthcare-people-conce.png -------------------------------------------------------------------------------- /img/medicine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/medicine.jpg -------------------------------------------------------------------------------- /img/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/menu.svg -------------------------------------------------------------------------------- /img/newsupdate-w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/newsupdate-w.jpg -------------------------------------------------------------------------------- /img/patientstory-w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/patientstory-w.jpg -------------------------------------------------------------------------------- /img/portfolio-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/portfolio-1.jpg -------------------------------------------------------------------------------- /img/portfolio-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/portfolio-2.jpg -------------------------------------------------------------------------------- /img/portfolio-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/portfolio-3.jpg -------------------------------------------------------------------------------- /img/portfolio-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/portfolio-4.jpg -------------------------------------------------------------------------------- /img/portfolio-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/portfolio-5.jpg -------------------------------------------------------------------------------- /img/portfolio-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/portfolio-6.jpg -------------------------------------------------------------------------------- /img/registration.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/registration.jpg -------------------------------------------------------------------------------- /img/surgery-1822458_640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/surgery-1822458_640.png -------------------------------------------------------------------------------- /img/swasthya-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/swasthya-logo.png -------------------------------------------------------------------------------- /img/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/twitter.png -------------------------------------------------------------------------------- /img/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/img/youtube.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/index.js -------------------------------------------------------------------------------- /login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/login.html -------------------------------------------------------------------------------- /nearby.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/nearby.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/package.json -------------------------------------------------------------------------------- /pediatrics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/pediatrics.html -------------------------------------------------------------------------------- /physician.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/physician.html -------------------------------------------------------------------------------- /psychatry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/psychatry.html -------------------------------------------------------------------------------- /radiology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/radiology.html -------------------------------------------------------------------------------- /register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/register.html -------------------------------------------------------------------------------- /reviews.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/reviews.html -------------------------------------------------------------------------------- /script3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/script3.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/style.css -------------------------------------------------------------------------------- /style1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/style1.css -------------------------------------------------------------------------------- /style3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/style3.css -------------------------------------------------------------------------------- /urology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/urology.html -------------------------------------------------------------------------------- /user_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/user_login.html -------------------------------------------------------------------------------- /write_own_blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushargupta1504/Medical-Website/HEAD/write_own_blog.html --------------------------------------------------------------------------------