└── Doctello-master ├── logo.png ├── 13986.jpg ├── img ├── logo.png ├── new.jpg ├── new5.png ├── bg-banner.jpg └── bg-banner2.jpg ├── fonts ├── FontAwesome.otf ├── fontawesome-webfont.eot ├── fontawesome-webfont.ttf ├── fontawesome-webfont.woff └── fontawesome-webfont.woff2 ├── README.md ├── css ├── style1.css ├── style.css └── font-awesome.min.css ├── js ├── custom.js ├── jquery.easing.min.js ├── bootstrap.min.js └── jquery.min.js ├── contactform └── contactform.js ├── faq.html └── index.html /Doctello-master/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mustafa-Hassan2001/Doctello-master/HEAD/Doctello-master/logo.png -------------------------------------------------------------------------------- /Doctello-master/13986.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mustafa-Hassan2001/Doctello-master/HEAD/Doctello-master/13986.jpg -------------------------------------------------------------------------------- /Doctello-master/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mustafa-Hassan2001/Doctello-master/HEAD/Doctello-master/img/logo.png -------------------------------------------------------------------------------- /Doctello-master/img/new.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mustafa-Hassan2001/Doctello-master/HEAD/Doctello-master/img/new.jpg -------------------------------------------------------------------------------- /Doctello-master/img/new5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mustafa-Hassan2001/Doctello-master/HEAD/Doctello-master/img/new5.png -------------------------------------------------------------------------------- /Doctello-master/img/bg-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mustafa-Hassan2001/Doctello-master/HEAD/Doctello-master/img/bg-banner.jpg -------------------------------------------------------------------------------- /Doctello-master/img/bg-banner2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mustafa-Hassan2001/Doctello-master/HEAD/Doctello-master/img/bg-banner2.jpg -------------------------------------------------------------------------------- /Doctello-master/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mustafa-Hassan2001/Doctello-master/HEAD/Doctello-master/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Doctello-master/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mustafa-Hassan2001/Doctello-master/HEAD/Doctello-master/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Doctello-master/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mustafa-Hassan2001/Doctello-master/HEAD/Doctello-master/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Doctello-master/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mustafa-Hassan2001/Doctello-master/HEAD/Doctello-master/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Doctello-master/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mustafa-Hassan2001/Doctello-master/HEAD/Doctello-master/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /Doctello-master/README.md: -------------------------------------------------------------------------------- 1 | # Doctello 2 | Doctello : is medical website designed by me to help hospitals and it is also beneficial for different patient to classify their respective disease and their concern doctors.As It is having a special System Checker option which is very beneficial for new patient. 3 | -------------------------------------------------------------------------------- /Doctello-master/css/style1.css: -------------------------------------------------------------------------------- 1 | *{ 2 | margin:0px; 3 | padding:0px; 4 | font-family: Century Gothic; 5 | } 6 | header{ 7 | background-image: url(../13986.jpg); 8 | height:1000vh; 9 | background-attachment: fixed; 10 | background-repeat: repeat; 11 | background-size: cover; 12 | background-position: centre; 13 | } 14 | .header1{ 15 | padding: 20px; 16 | text-align: center; 17 | } 18 | .questions{ 19 | width:1170px; 20 | margin:auto; 21 | } 22 | -------------------------------------------------------------------------------- /Doctello-master/js/custom.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | 3 | // Add smooth scrolling to all links in navbar 4 | $(".navbar a,a.btn-appoint, .quick-info li a, .overlay-detail a").on('click', function(event) { 5 | 6 | var hash = this.hash; 7 | if (hash) { 8 | event.preventDefault(); 9 | $('html, body').animate({ 10 | scrollTop: $(hash).offset().top 11 | }, 900, function() { 12 | window.location.hash = hash; 13 | }); 14 | } 15 | 16 | }); 17 | 18 | $(".navbar-collapse a").on('click', function() { 19 | $(".navbar-collapse.collapse").removeClass('in'); 20 | }); 21 | 22 | //jQuery to collapse the navbar on scroll 23 | $(window).scroll(function() { 24 | if ($(".navbar-default").offset().top > 50) { 25 | $(".navbar-fixed-top").addClass("top-nav-collapse"); 26 | } else { 27 | $(".navbar-fixed-top").removeClass("top-nav-collapse"); 28 | } 29 | }); 30 | 31 | })(jQuery); 32 | -------------------------------------------------------------------------------- /Doctello-master/contactform/contactform.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function($) { 2 | "use strict"; 3 | 4 | //Contact 5 | $('form.contactForm').submit(function() { 6 | var f = $(this).find('.form-group'), 7 | ferror = false, 8 | emailExp = /^[^\s()<>@,;:\/]+@\w[\w\.-]+\.[a-z]{2,}$/i; 9 | 10 | f.children('input').each(function() { // run all inputs 11 | 12 | var i = $(this); // current input 13 | var rule = i.attr('data-rule'); 14 | 15 | if (rule !== undefined) { 16 | var ierror = false; // error flag for current input 17 | var pos = rule.indexOf(':', 0); 18 | if (pos >= 0) { 19 | var exp = rule.substr(pos + 1, rule.length); 20 | rule = rule.substr(0, pos); 21 | } else { 22 | rule = rule.substr(pos + 1, rule.length); 23 | } 24 | 25 | switch (rule) { 26 | case 'required': 27 | if (i.val() === '') { 28 | ferror = ierror = true; 29 | } 30 | break; 31 | 32 | case 'minlen': 33 | if (i.val().length < parseInt(exp)) { 34 | ferror = ierror = true; 35 | } 36 | break; 37 | 38 | case 'email': 39 | if (!emailExp.test(i.val())) { 40 | ferror = ierror = true; 41 | } 42 | break; 43 | 44 | case 'checked': 45 | if (! i.is(':checked')) { 46 | ferror = ierror = true; 47 | } 48 | break; 49 | 50 | case 'regexp': 51 | exp = new RegExp(exp); 52 | if (!exp.test(i.val())) { 53 | ferror = ierror = true; 54 | } 55 | break; 56 | } 57 | i.next('.validation').html((ierror ? (i.attr('data-msg') !== undefined ? i.attr('data-msg') : 'wrong Input') : '')).show('blind'); 58 | } 59 | }); 60 | f.children('textarea').each(function() { // run all inputs 61 | 62 | var i = $(this); // current input 63 | var rule = i.attr('data-rule'); 64 | 65 | if (rule !== undefined) { 66 | var ierror = false; // error flag for current input 67 | var pos = rule.indexOf(':', 0); 68 | if (pos >= 0) { 69 | var exp = rule.substr(pos + 1, rule.length); 70 | rule = rule.substr(0, pos); 71 | } else { 72 | rule = rule.substr(pos + 1, rule.length); 73 | } 74 | 75 | switch (rule) { 76 | case 'required': 77 | if (i.val() === '') { 78 | ferror = ierror = true; 79 | } 80 | break; 81 | 82 | case 'minlen': 83 | if (i.val().length < parseInt(exp)) { 84 | ferror = ierror = true; 85 | } 86 | break; 87 | } 88 | i.next('.validation').html((ierror ? (i.attr('data-msg') != undefined ? i.attr('data-msg') : 'wrong Input') : '')).show('blind'); 89 | } 90 | }); 91 | if (ferror) return false; 92 | else var str = $(this).serialize(); 93 | var action = $(this).attr('action'); 94 | if( ! action ) { 95 | action = 'contactform/contactform.php'; 96 | } 97 | $.ajax({ 98 | type: "POST", 99 | url: action, 100 | data: str, 101 | success: function(msg) { 102 | // alert(msg); 103 | if (msg == 'OK') { 104 | $("#sendmessage").addClass("show"); 105 | $("#errormessage").removeClass("show"); 106 | $('.contactForm').find("input, textarea").val(""); 107 | } else { 108 | $("#sendmessage").removeClass("show"); 109 | $("#errormessage").addClass("show"); 110 | $('#errormessage').html(msg); 111 | } 112 | 113 | } 114 | }); 115 | return false; 116 | }); 117 | 118 | }); 119 | -------------------------------------------------------------------------------- /Doctello-master/faq.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |Ans:General physicians treat conditions like headaches, flu, urinary infections, blood pressure, diabetes, common aches, etc.
18 |Ans:Yes, most of the general physicians do offer home consultation in case of emergencies or when requested.
21 |Ans:Most of the conditions treated by general physicians are common. Hence, most of them are not covered by insurance. However, you can always check with your insurance company.
24 |Ans:Yes, some of the general physicians do provide in-house medicines along with prescribing medication.
27 |Ans:The consultation fees of general physicians in Dehradunranges approximately from Rs. 250 to Rs. 500.
30 |Ans:There’s always the possibility that what I do with medications could hurt a patient,” Epperly says. 33 | Whether that hurt comes in the form of headaches or skin rashes or mouth blisters, those sorts of side effects are common—and are things patients should hear about from their doctors beforehand so they go into a course of treatment with eyes wide open, he says.
34 |Ans:A general physician charges approximately Rs 400 to Rs 500 per consultation. 37 | (The prices are highly indicative and are subject to change.)
38 |Ans:The family practitioner is trained to diagnose the condition no matter how simple or complex it might be. 41 | They might recommend a series of tests in case in-depth diagnosis is required to identify the root cause of the problem. 42 | Doctors might refer the patient to a specialist in case the problem is serious or requires treatment by a specialist.
43 |Ans:Following diseases are be treated by general physician:
46 |
47 |
Common aches and pains in the body are pretty common. However, significant pain 50 | in the body for an extended period of time requires to be referred to a physician. 51 | The doctor can help in diagnosing the root cause of the problem and treating it.
52 |This is a common reason for which people visit doctors. Headaches could be caused due to a variety of reasons. 56 | Frequent headaches could be caused due to migraines which require to be treated promptly as headaches can hamper daily life.
57 |Coughs might be accompanied by cold or an irritation in the throat. It can be caused due to cold, pneumonia or other more serious factors like asthma etc.
61 |This is an infectious disease caused by the female Anopheles mosquito. 65 | It is accompanied by a number of symptoms that begin before the offset of the disease.
66 |Urinary infections might cause difficulty in passing urine and if not treated can lead to more serious conditions.
70 |Blood pressure refers to the pressure of blood as it is being pumped by the heart. 74 | Physicians make sure to check their clients blood pressure since both high and low blood pressure can prove to be harmful. 75 | High blood pressure can lead to a number of conditions like heart disease, stroke etc. 76 | Low blood pressure can lead to symptoms like feeling dizzy, irregular heartbeat etc.
77 |Diabetes is a disease that affects the body's ability to produce glucose. 81 | Diabetes can can lead to a number of complications if not managed well.
82 |Medical care is something everyone needs, it can be easy to forget that medical care is a service and patients are customers. But good customer service is just as important in medicine as it is in any other field, and because people's health is so important, bad medical care or shoddy customer service might cause clients to complain to local licensing boards or engage in other actions that can harm a medical business.
168 |If you have a health concern and can’t reach a doctor right away, or you’re not sure where else to call, you can call our Medical Help Line 24 hours a day, 7 days a week. Once enrolled, this member benefit allows you to speak with an experienced registered nurse to get answers to your questions and find out what steps you need to take. If you are currently a member of Independent Health, you can find the phone number of the 24-Hour Medical Help Line on the back of your Member ID card.
Ambulance services in NSW are provided free of charge to concession card holders, including pensioners. NSW Ambulance also has a policy in place for patients who are under financial hardship and unable to pay for our services.24 hours patient transport vehicle available. Patients are transported from home (on campus) to IIT hospital and patients referred by emergency duty doctor to empanelled hospital for specialized care.
186 |Process of providing information, advice, and assistance to patients to improve their health, treatment adherence, and quality of life
197 | Focuses on open communication between the patient and the provider, shared decision-making, and a shared goal of alleviating discomfort for the patient.
198 | Takes into account patients’ individual preferences, concerns, and emotions
199 |
200 |
Patients are registered at the reception and are seen on first come, first serve basis, however out of turn consultation may be provided in case of emergency and senior citizen. Patients have the right to consult any doctor. In OPD, clinical consultation is provided to patients which includes history taking, clinical examination, diagnosis and providing prescription to patients besides advising laboratory tests in some cases.
210 |Cancer Care, we offer a holistic integrated care by consolidating views of experts in Surgical Oncology, Radiation Oncology, and Medical Oncology.We believe in treating Cancer with a combination of Chemotherapy, Radiation Therapy, Surgery and Targeted Therapy. 227 | We are the first facility in northern India to acquire Novalis Tx for IMRT/IGRT, Radiosurgery, HIPEC and SRS/SRT. Additionally, we are equipped with an advanced Da Vinci XI Robotic System for treating complex conditions like cancers of prostate, cervix, colon/rectum, as well as heart tumors. The procedure is the next frontier for minimally invasive surgery.
228 |A bone marrow transplant is a medical procedure performed to replace unhealthy bone marrow stem cells with the healthy ones. This transplant is carried out to treat people with conditions like leukaemia - Blood Cancer, multiple myeloma, severe blood diseases such as aplastic anaemia, thalassemia, sickle cell anaemia and certain immune deficiency diseases. Typically, the stem cells are collected via a peripheral vein. The whole bone marrow transplant procedure is like donating blood or platelets. The stem cells from the bone marrow are in charge for producing blood cells like Thrombocytes, Leukocytes Erythrocytes
234 || Monday - Friday | 244 |8.00 - 17.00 | 245 |
| Saturday | 248 |9.30 - 17.30 | 249 |
| Sunday | 252 |9.30 - 15.00 | 253 |
To promote awareness among functionaries involved in Health and Hospital Management. To promote research in the field of Health Care.In order to improve the efficiency of Health Care delivery Systems. To promote the development of high quality hospital services and community health care.
272 | 273 |Increase the range of services wherever there are opportunities to meet an area of customer need and demand, on financially viable basis.
282 |Provide a safe and therapeutic environment for all patient, staff, visitors and to Increase overall satisfaction rates of patients, employees and visiting medical officers. 289 |
290 |— Amber Kakkar
B.tech CSE
DehraDun,Uttarakhand
India, 248001
info@blueberry.com
330 | 331 |+1 600 123 1234
332 |