Current File : /home/inlingua/www/sensoriumpsychologists.com/backup/diagnostics/contact-us.php |
<?php include('include/header.php'); ?>
<!-- Start main-content -->
<div class="main-content">
<!-- Section: inner-header -->
<section class="inner-header divider parallax layer-overlay overlay-white-8" data-bg-img="images/bg/bg6.jpg">
<div class="container pt-60 pb-60">
<!-- Section Content -->
<div class="section-content">
<div class="row">
<div class="col-md-12 text-center">
<h2 class="title">Contact Us</h2>
<ol class="breadcrumb text-center text-black mt-10">
<li><a href="index.php">Home</a></li>
<li><a href="#">Contact Us</a></li>
</ol>
</div>
</div>
</div>
</div>
</section>
<!-- Section: Have Any Question -->
<section class="divider">
<div class="container pt-60 pb-60">
<div class="section-title mb-60">
<div class="row">
<div class="col-md-12">
<div class="esc-heading small-border text-center">
<h3>Have any Questions?</h3>
</div>
</div>
</div>
</div>
<div class="section-content">
<div class="row">
<div class="col-sm-12 col-md-4">
<div class="contact-info text-center">
<i class="fa fa-phone font-36 mb-10 text-theme-colored"></i>
<h4>Call Us</h4>
<h6 class="text-gray">Phone: +262 695 2601</h6>
</div>
</div>
<div class="col-sm-12 col-md-4">
<div class="contact-info text-center">
<i class="fa fa-map-marker font-36 mb-10 text-theme-colored"></i>
<h4>Address</h4>
<h6 class="text-gray">121 King Street, Australia</h6>
</div>
</div>
<div class="col-sm-12 col-md-4">
<div class="contact-info text-center">
<i class="fa fa-envelope font-36 mb-10 text-theme-colored"></i>
<h4>Email</h4>
<h6 class="text-gray">you@yourdomain.com</h6>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Divider: Contact -->
<section class="divider bg-lighter">
<div class="container">
<div class="row pt-30">
<div class="col-md-7">
<h3 class="line-bottom mt-0 mb-30">Interested in discussing?</h3>
<!-- Contact Form -->
<form id="contact_form" name="contact_form" class="" action="include/sendmail.php" method="post">
<div class="row">
<div class="col-sm-6">
<div class="form-group">
<label>Name <small>*</small></label>
<input name="form_name" class="form-control" type="text" placeholder="Enter Name" required="">
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label>Email <small>*</small></label>
<input name="form_email" class="form-control required email" type="email" placeholder="Enter Email">
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<div class="form-group">
<label>Subject <small>*</small></label>
<input name="form_subject" class="form-control required" type="text" placeholder="Enter Subject">
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label>Phone</label>
<input name="form_phone" class="form-control" type="text" placeholder="Enter Phone">
</div>
</div>
</div>
<div class="form-group">
<label>Message</label>
<textarea name="form_message" class="form-control required" rows="5" placeholder="Enter Message"></textarea>
</div>
<div class="form-group">
<input name="form_botcheck" class="form-control" type="hidden" value="" />
<button type="submit" class="btn btn-dark btn-theme-colored btn-flat" data-loading-text="Please wait...">Send your message</button>
</div>
</form>
<!-- Contact Form Validation-->
<script type="text/javascript">
$("#contact_form").validate({
submitHandler: function(form) {
var form_btn = $(form).find('button[type="submit"]');
var form_result_div = '#form-result';
$(form_result_div).remove();
form_btn.before('<div id="form-result" class="alert alert-success" role="alert" style="display: none;"></div>');
var form_btn_old_msg = form_btn.html();
form_btn.html(form_btn.prop('disabled', true).data("loading-text"));
$(form).ajaxSubmit({
dataType: 'json',
success: function(data) {
if( data.status == 'true' ) {
$(form).find('.form-control').val('');
}
form_btn.prop('disabled', false).html(form_btn_old_msg);
$(form_result_div).html(data.message).fadeIn('slow');
setTimeout(function(){ $(form_result_div).fadeOut('slow') }, 6000);
}
});
}
});
</script>
</div>
<div class="col-md-5">
<!-- Google Map HTML Codes -->
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d14015.522588692966!2d77.2214587!3d28.5733465!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x9c3d2264d1d3257!2sGyani%20Bazar!5e0!3m2!1sen!2sin!4v1588688675825!5m2!1sen!2sin" width="100%" height="450" frameborder="0" style="border:0" allowfullscreen></iframe>
</div>
</div>
</div>
</section>
</div>
<!-- end main-content -->
<?php include('include/footer.php'); ?>