489495df MSV FM

MSV FM

Path : /home3/mandnweb/staging.mandnrecruit.com/
File Upload :
Current < : /home3/mandnweb/staging.mandnrecruit.com/contact.php

<?php 
$page_title = "Contact Us";
$keywords = 'Recruitment agency, Apply for a job, Find an employee';
$meta_description = 'Best Recruitment Agency in the UK. M&N RECRUIT has earned the faith and trust of its clients in Birmingham, Kent, London and now Glasgow and has been receiving multiple staffing related inquiries from firms across the nation.';
$active = 6;
require 'partials/head.php' ?>
</head>
<body>

<?php require 'partials/header.php'; ?>

<div class="main-content desktop-pt-80">
	<div class="inner-content relative" style="z-index: 10;">
		<section class="section-row bg-header-inner " style="background-image: url('images/recruitment-building.jpg');">
		    <div class="overlay-primary-bg2"></div>
            <div class="container text-center is-relative z-2">
                <h2 class=" text-white"><?php echo $page_title; ?></h2>
            </div>
		</section>
		<section class="section-row pb-5" style="background-color: #f3f3f3; ">
			<div class="container mb-5">
				<div class="text-center">
					<h1 class="section-title heading">How can we help you?</h1>
					<p>For all enquiries, please fill up the form below.</p>
				</div>
			</div>
			<div class="container mb-5">
				<div class="row">
					<div class="col-12 col-sm-6 animation-element slide-left mobile-mb-4">
						<div class="mb-3" style="max-width: 320px;">
							<label><b style="font-weight: 800;">Our Location:</b></label>
							<p>Suite 4D Avebury House, 55 Newhall Street Birmingham West Midlands B3 3RB</p>
                            <p>Suite 407, Avix Business Centre 42-46 Hagley Road Birmingham B16 8PE</p>
						</div>
						<div class="mb-3">
							<label><b style="font-weight: 800;">Call Us:</b></label>
							<p><a href="tel:01213898683">01213898683</a></p>
						</div>
						<div class="mb-3">
							<label><b style="font-weight: 800;">Email Us:</b></label>
							<p><a href="mailto:info@mandncentre.com">info@mandnrecruit.com</a></p>
						</div>
						<div>
							<ul class="list-unstyled socials mb-0 color-primary " >
								<li><a href="https://www.facebook.com/MANDNRECRUIT" class="border-50px"><i class="fab fa-facebook-f"></i></a></li>
								<li><a href="https://twitter.com/MANDNRECRUIT" class="border-50px second2"><i class="fab fa-twitter"></i></a></li>
								<li><a href="https://instagram.com/MANDNRECRUIT" class="border-50px second2"><i class="fab fa-instagram"></i></a></li>	
                                <li><a href="https://web.whatsapp.com/send?phone=01212968839" class="border-50px second2"><i class="fa-brands fa-viber"></i></a></li>						
								<li><a href="https://www.youtube.com/channel/UCfX0vmBHJd8Zur8tKtZscRw" class="border-50px second2"><i class="fab fa-youtube"></i></a></li>
								
							</ul>
						</div>
					</div>
					<div class="col-12 col-sm-6">
						<div class="mt-4 mb-4 text-center loader hidden"><img src="images/loader.gif" alt="loading" /></div>
  						<div class="notif-message"></div>
						<form action="sendmail.php" method="POST" id="contactForm">
								<input type="hidden" name="form_type" value="1">
								<div class="form-group">
								    <label for="name">Name</label>
								    <input type="text" class="form-control" name="name" id="name" >
								</div>
								<div class="form-group">
								    <label for="email">Email</label>
								    <input type="email" class="form-control" name="email" id="email" >
								</div>
								<div class="form-group">
								    <label for="phone">Phone</label>
								    <input type="text" class="form-control" name="phone" id="phone" >
								</div>
								<div class="form-group">
								    <label for="phone">Message</label>
								    <textarea class="form-control" name="message" rows="6" id="message"></textarea>
								</div>
								<div>
									<input type="submit" name="submit" class="primary-btn force-btn" value="Submit">
								</div>
							
						</form>
					</div>
					
				</div>
			</div>			
		</section>
	</div>
</div>

<?php require 'partials/widgets.php'; ?>

<?php require 'partials/footer.php'; ?>
<?php require 'partials/foot.php'; ?>
<script type="text/javascript">
	$("#contactForm").submit(function(e) {

		    e.preventDefault(); // avoid to execute the actual submit of the form.

		    var form = $(this);
		    var url = form.attr('action');
		    form.siblings('.notif-message').empty();
		    form.siblings('.loader').show();
		    form.hide();
		    
		    $.ajax({
		       type: "POST",
		       url: url,
		       data: form.serialize(),
		       success: function(data){
		  
		         form.siblings('.loader').hide();
		          // reset the form           
		           form.siblings('.notif-message').append('<div class="success-notif notif text-center">Thank you for contacting us. We will get back to you as soon as possible.</div>');


		          form[0].reset();
		         // location.reload();
		        
		       },
		       error:function(data){
		         form.siblings('.loader').hide();
		            form.siblings('.notif-message').append('<div class="error-notif text-center">Something went wrong. ' + data.message + '</div>');
		            form.show();
		      }
		     })
		    
		});
</script>
</body>

</html>
mandnweb@162.241.194.38: ~ $