489495df MSV FM

MSV FM

Path : /home3/mandnweb/mariananjie.co.uk/
File Upload :
Current < : /home3/mandnweb/mariananjie.co.uk/membership.php

<?php 
$page_title = "Membership - Professional Business Network";
$keywords = 'Business Coach, Professional business coach, learn online';
$meta_description = 'All our Members will benefit free master class every weekends, free web builder and manage, free meeting room booking one\'s a month at our office in Birmingham City free 1 to 1 with with business coach one\'s a month, free advice about your business plan and many more.';
$active = 4;
require 'partials/head.php' ?>
<link rel="stylesheet" type="text/css" href="css/owl.css">
<!-- insert addtnl code here -->
</head>
<body>

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

	<div class="main-content">
		<div class="page-header-section">								
			<div class="about-inner" style="background-image: url('/images/blue-header-bg.jpg');">
				<div class="overlay-primary-bg1 d-none"></div>	
				<div class="container z-index-3 is-relative">
					<div class="col-sm-12 ">
						<div class="inner d-flex justify-content-center flex-column is-light-transparent animation-element slide-left">									
							<h1 class="mb-1 slider-title height-auto text-white">Membership</h1>									
						</div>
					</div>
				</div>
			</div>				
		</div>

		<div class="inner-content relative" style="z-index: 10;">
			<section class="section-row bg-semi-light">
				<div class="container">
					<div class="col-sm-8 mx-auto mb-5">
						<h2 class="mb-3 section-title heading">Become a Member</h2>
						<p>All our Members will benefit free master class every weekends, free web builder and manage, free meeting room booking one's a month at our office in Birmingham City free 1 to 1 with with business coach one's a month, free advice about your business plan and many more.</p>

					</div>

					<div class="col-sm-8 mx-auto">
                        <h3 class="mb-3">Send us your details and we’ll get back to you to schedule a time to talk.</h3>
                        <div class="mt-4 mb-4 text-center loader hidden"><img loading="lazy" width="149" height="96" src="images/loader.gif" alt="loading" /></div>
  						<div class="notif-message"></div>
						<form action="sendmail.php" method="POST" id="memberform">
								<input type="hidden" name="form_type" value="2">
								<div class="form-group">
								    <label for="name">Name</label>
								    <input type="text" class="form-control" name="name"  >
								</div>
														
								<div class="row">
									<div class="col-12 col-sm-6">
										<div class="form-group">
											<label for="email">Email</label>
											<input type="email" class="form-control" name="email" >
										</div>
									</div>
                                    <div class="col-12 col-sm-6">
										<div class="form-group">
											<label for="phone">Phone</label>
											<input type="text" class="form-control" name="phone" >
										</div>
									</div>
									
								</div>	
                                <div class="row">
                                    <div class="col-12 col-sm-6">
                                        <div class="form-group">
											<label for="business_name">Business Name</label>
											<input type="text" class="form-control" name="business_name" >
										</div>
									</div>
									<div class="col-12 col-sm-6">
										<div class="form-group">
											<label for="business_type">Business Type</label>
											<input type="text" class="form-control" name="business_type" >
										</div>
									</div>
									
								</div>	
                                <div class="form-group">
								    <label for="business_address">Full Business Address</label>
								    <textarea class="form-control" name="business_address" rows="3" ></textarea>
								</div>
								<div class="form-group">
								    <label for="reason">Reason for wanting to become a member</label>
								    <textarea class="form-control" name="reason" rows="6" ></textarea>
								</div>
								<div class="mb-3">
									<div class="g-recaptcha" data-sitekey="6LfF5FMpAAAAAH6zzRhkMhaspqXkBX30FcajhKY4"></div>
								</div>
								<div>
									<input type="submit" name="submit" class="primary-btn force-btn" value="Submit">
								</div>
							
						</form>
					</div>
					<div class="separated" style="background-image: url(images/border-dark.png);"></div>
					<div class="row">
						<div class="col-12 col-sm-5 mobile-mb-4">
                            <div class="h-100 d-flex align-items-center">
                                <div>
                                    <h2 class="mb-3 section-title heading">Go beyond your dreams</h2>
                                    <p>Now is the time to discover your full potential. Discover and develop meaning. Attain your dreams. Live a more fulfilling life.</p>
                                </div>
                            </div>
							
						</div>
						<div class="col-12 col-sm-7">
                            <iframe style="width:100%;" height="350" src="https://www.youtube.com/embed/qO0dEqRl8c0" title="Are you ready to start your own business?" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
						</div>
					</div>
					
					
				</div>
			</section>		
			
			
		</div>
		
	</div>
	<?php require 'partials/widgets.php'; ?>

	<?php require 'partials/footer.php'; ?>
	<?php require 'partials/foot.php'; ?>
	<script>
        $("#memberform").submit(function(e) {
			var recaptcha = $("#g-recaptcha-response").val();
		if(recaptcha === ""){
			e.preventDefault();
			alert("Please Check Recaptcha.");
			return false;
		}
            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 your message. 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: ~ $