This commit is contained in:
iimtt@siliconpin.com
2025-10-31 05:50:08 +00:00
parent bb1f4d1adf
commit 7c991a3fed
8 changed files with 1535 additions and 14 deletions

View File

@@ -835,17 +835,16 @@ include("_navbar.php");
</div> <!-- / .container -->
</section>
<!----------------------------------------CTA SECTION-------------------------------------------------->
<!--
<section class="pt-6 pt-md-8 bg-gray-200">
<div class="container pb-6 pb-md-8 border-bottom border-gray-300">
<div class="row align-items-center">
<div class="col-12 col-md">
<!-- Heading -->
<h2 class="mb-1 font-weight-bold dblue h3">
Get our stories delivered
</h2>
<!-- Text -->
<p class="font-size-lg text-muted mb-6 mb-md-0">
From us to your inbox weekly.
</p>
@@ -859,7 +858,6 @@ include("_navbar.php");
<form action="#" role="form" method="post" novalidate="novalidate">
<div class="input-group">
<input aria-required="true" name="email" class="form-control" placeholder="Email" type="email" id="emailFooter">
<!--<input aria-required="true" class="form-control" id="phnFooter" type="number" name="telephone" placeholder="Phone" required>-->
<span class="input-group-btn">
<button id="widget-subscribe-submit-button dBtn" type="button" onclick="downloadBrFooter();" class="btn bt">Submit</button>
</span>
@@ -869,10 +867,10 @@ include("_navbar.php");
</div>
</div>
</div> <!-- / .row -->
</div> <!-- / .container -->
</div>
</div>
</section>
-->
<!------------------------------------------------------brochure form--------------------------------------------------------->
<script type="text/javascript">

BIN
assets/img/kolathur.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 291 KiB

View File

@@ -349,6 +349,20 @@
</div>
</a>
</div>
<div class="col-12 col-md-6 col-lg-4 d-flex p-8">
<a style="text-decoration:none;" href="montessori-teacher-training-kolathur">
<div class="lift lift-lg card-bg">
<div class="card-img-top">
<img src="/assets/img/kolathur.png" alt="iimtt" class="img-fluid">
</div>
<div class="card-body bg-cover card-bg card-bg">
<h3 class="text-center text-black">
<b>Kolathur</b>
</h3>
</div>
</div>
</a>
</div>
</div>
</div>
</section>

View File

@@ -1,8 +1,9 @@
<!-- Title -->
<title>Montessori Teacher Training in Hanoi</title>
<meta name="description" content="Join IIMTT to get an international Montessori teacher training qualification. We offer in-class certificate, diploma and advanced diploma course in Hanoi.">
<link rel="canonical" href="https://iimtt.org/montessori-teacher-training-hanoi">
<link rel="canonical" href="https://iimtt.org/montessori-teacher-training-hanoi">
<!-- Add Google reCAPTCHA script -->
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
</head>
<body>
<!-- Google Tag Manager (noscript) -->
@@ -351,6 +352,11 @@ include("_navbar.php");
</div>
<div class="form-group mb-5">
<input type="text" id="city" aria-required="true" name="widget-contact-form-city" required class="form-control required name shadow-lg" style="border-radius:26px;min-height:0px;padding:6px;padding-left:16px" placeholder="Your City">
</div>
<!-- ✅ Google reCAPTCHA Widget -->
<div class="form-group text-center">
<div class="g-recaptcha" data-sitekey="6LfLjvgrAAAAAIlFINpRhfP5HgnJbJ8lPQbVky8Z"></div>
<p id="captchaError" style="color: red; display: none;">Please verify you are not a robot.</p>
</div>
<div class="form-group mb-0 text-center">
<button style="background-color: #f7a325;margin:10px 0px;border-radius:26px;" class="btn btn-sm lift shadow-lg px-8" type="button" onclick="paymentSubmitForm()">&nbsp;Book a Seat</button>
@@ -396,6 +402,11 @@ include("_navbar.php");
</div>
<div class="form-group mb-5">
<input type="text" id="city1" aria-required="true" name="widget-contact-form-city" required class="form-control required name shadow-lg" style="border-radius:26px;min-height:0px;padding:6px;padding-left:16px" placeholder="Your City">
</div>
<!-- ✅ Google reCAPTCHA Widget -->
<div class="form-group text-center">
<div class="g-recaptcha" data-sitekey="6LfLjvgrAAAAAIlFINpRhfP5HgnJbJ8lPQbVky8Z"></div>
<p id="captchaError" style="color: red; display: none;">Please verify you are not a robot.</p>
</div>
<div class="form-group mb-0 text-center">
<button style="background-color: #f7a325;margin:10px 0px;border-radius:26px;" class="btn btn-sm lift shadow-lg px-8" type="button" onclick="paymentSubmitForm1()">&nbsp;Book a Seat</button>
@@ -566,6 +577,7 @@ include("_navbar.php");
var paymentSuccess = document.getElementById('paymentSuccess');
var paymentEmailError = document.getElementById('paymentEmailError');
var req = document.getElementById("req");
var captchaError = document.getElementById('captchaError');
function paymentSubmitForm() {
user = document.getElementById("user").value;
@@ -573,6 +585,8 @@ include("_navbar.php");
paymentEmail = document.getElementById("paymentEmail").value;
city = document.getElementById('city').value;
paymentSuccess.style.display = "none";
captchaError.style.display = "none";
console.log('all details',user,contact,paymentEmail,city)
if (user == '' || contact == '' || paymentEmail == '' || city =='') {
paymentWarning.style.display = "block";
@@ -587,6 +601,12 @@ include("_navbar.php");
// contactError.style.display = "block";
// } else
{
// ✅ Verify reCAPTCHA
var captchaResponse = grecaptcha.getResponse();
if (!captchaResponse.length) {
captchaError.style.display = "block";
return;
}
paymentEmailError.style.display = "none";
paymentWarning.style.display = "none";
@@ -632,7 +652,8 @@ include("_navbar.php");
document.getElementById("user").value = "";
document.getElementById("contact").value = "";
document.getElementById("paymentEmail").value = "";
document.getElementById("city").value = "";
document.getElementById("city").value = "";
grecaptcha.reset(); // reset captcha after submission
}
);
}
@@ -711,6 +732,7 @@ include("_navbar.php");
var paymentSuccess1 = document.getElementById('paymentSuccess1');
var paymentEmailError1 = document.getElementById('paymentEmailError1');
var req1 = document.getElementById("req1");
var captchaError = document.getElementById('captchaError');
function paymentSubmitForm1() {
user1 = document.getElementById("user1").value;
@@ -718,6 +740,7 @@ include("_navbar.php");
paymentEmail1 = document.getElementById("paymentEmail1").value;
city1 = document.getElementById('city1').value;
paymentSuccess1.style.display = "none";
captchaError.style.display = "none";
console.log('all details',user1,contact1,paymentEmail1,city1)
if (user1 == '' || contact1 == '' || paymentEmail1 == '' || city1 =='') {
paymentWarning1.style.display = "block";
@@ -732,6 +755,12 @@ include("_navbar.php");
// contactError.style.display = "block";
// } else
{
// ✅ Verify reCAPTCHA
var captchaResponse = grecaptcha.getResponse();
if (!captchaResponse.length) {
captchaError.style.display = "block";
return;
}
paymentEmailError1.style.display = "none";
paymentWarning1.style.display = "none";
@@ -777,7 +806,8 @@ include("_navbar.php");
document.getElementById("user1").value = "";
document.getElementById("contact1").value = "";
document.getElementById("paymentEmail1").value = "";
document.getElementById("city1").value = "";
document.getElementById("city1").value = "";
grecaptcha.reset(); // reset captcha after submission
}
);
}

File diff suppressed because it is too large Load Diff

View File

@@ -2,6 +2,8 @@
<title>Montessori Teacher Training Courses in Malaysia with certificate</title>
<meta name="description" content="Gain valuable teaching skills through the renowned International Institute of Montessori Teacher Training Malaysia, with over 21 years of expertise.">
<link rel="canonical" href="https://iimtt.org/montessori-teacher-training-malaysia">
<!-- Add Google reCAPTCHA script -->
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<style>
* { box-sizing: border-box; }
@@ -777,6 +779,11 @@ Master in Education, Victoria University, Australia<br/> International Montessor
</div>
<div class="form-group mb-5">
<input type="text" id="city" aria-required="true" name="widget-contact-form-city" required class="form-control required name shadow-lg" style="border-radius:26px;min-height:0px;padding:6px;padding-left:16px" placeholder="Your City">
</div>
<!-- ✅ Google reCAPTCHA Widget -->
<div class="form-group text-center">
<div class="g-recaptcha" data-sitekey="6LfLjvgrAAAAAIlFINpRhfP5HgnJbJ8lPQbVky8Z"></div>
<p id="captchaError" style="color: red; display: none;">Please verify you are not a robot.</p>
</div>
<div class="form-group mb-0 text-center">
<button style="background-color: #f7a325;margin:10px 0px;border-radius:26px;" class="btn btn-sm lift shadow-lg px-8" type="button" onclick="paymentSubmitForm()">&nbsp;Book a Seat</button>
@@ -1059,6 +1066,7 @@ Master in Education, Victoria University, Australia<br/> International Montessor
var paymentSuccess = document.getElementById('paymentSuccess');
var paymentEmailError = document.getElementById('paymentEmailError');
var req = document.getElementById("req");
var captchaError = document.getElementById('captchaError');
function paymentSubmitForm() {
user = document.getElementById("user").value;
@@ -1066,6 +1074,7 @@ Master in Education, Victoria University, Australia<br/> International Montessor
paymentEmail = document.getElementById("paymentEmail").value;
city = document.getElementById('city').value;
paymentSuccess.style.display = "none";
captchaError.style.display = "none";
console.log('all details',user,contact,paymentEmail,city)
if (user == '' || contact == '' || paymentEmail == '' || city =='') {
paymentWarning.style.display = "block";
@@ -1080,6 +1089,12 @@ Master in Education, Victoria University, Australia<br/> International Montessor
// contactError.style.display = "block";
// } else
{
// ✅ Verify reCAPTCHA
var captchaResponse = grecaptcha.getResponse();
if (!captchaResponse.length) {
captchaError.style.display = "block";
return;
}
paymentEmailError.style.display = "none";
paymentWarning.style.display = "none";
@@ -1126,6 +1141,7 @@ Master in Education, Victoria University, Australia<br/> International Montessor
document.getElementById("contact").value = "";
document.getElementById("paymentEmail").value = "";
document.getElementById("city").value = "";
grecaptcha.reset(); // reset captcha after submission
}
);
}

View File

@@ -1,8 +1,9 @@
<!-- Title -->
<title>IIMTT Montessori Teacher Training in Nairobi | Enroll Now!</title>
<meta name="description" content="Our experienced faculty, hands-on training provide a holistic learning experience that helps you develop a deep understanding of the Montessori philosophy and techniques.">
<link rel="canonical" href="https://iimtt.org/montessori-teacher-training-nairobi">
<meta name="description" content="Our experienced faculty, hands-on training provide a holistic learning experience that helps you develop a deep understanding of the Montessori philosophy and techniques.">
<link rel="canonical" href="https://iimtt.org/montessori-teacher-training-nairobi">
<!-- Add Google reCAPTCHA script -->
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
</head>
<body>
<!-- Google Tag Manager (noscript) -->
@@ -149,6 +150,11 @@ include("_navbar.php");
</div>
<div class="form-group mb-5">
<input type="text" id="city" aria-required="true" name="widget-contact-form-city" required class="form-control required name shadow-lg" style="border-radius:26px;min-height:0px;padding:6px;padding-left:16px" placeholder="Your City">
</div>
<!-- ✅ Google reCAPTCHA Widget -->
<div class="form-group text-center">
<div class="g-recaptcha" data-sitekey="6LfLjvgrAAAAAIlFINpRhfP5HgnJbJ8lPQbVky8Z"></div>
<p id="captchaError" style="color: red; display: none;">Please verify you are not a robot.</p>
</div>
<div class="form-group mb-0 text-center">
<button style="background-color: #f7a325;margin:10px 0px;border-radius:26px;" class="btn btn-sm lift shadow-lg px-8" type="button" onclick="paymentSubmitForm()">&nbsp;Book a Seat</button>
@@ -580,6 +586,7 @@ include("_navbar.php");
var paymentSuccess = document.getElementById('paymentSuccess');
var paymentEmailError = document.getElementById('paymentEmailError');
var req = document.getElementById("req");
var captchaError = document.getElementById('captchaError');
function paymentSubmitForm() {
user = document.getElementById("user").value;
@@ -587,6 +594,8 @@ include("_navbar.php");
paymentEmail = document.getElementById("paymentEmail").value;
city = document.getElementById('city').value;
paymentSuccess.style.display = "none";
captchaError.style.display = "none";
console.log('all details',user,contact,paymentEmail,city)
if (user == '' || contact == '' || paymentEmail == '' || city =='') {
paymentWarning.style.display = "block";
@@ -602,6 +611,12 @@ include("_navbar.php");
// } else
{
paymentEmailError.style.display = "none";
// ✅ Verify reCAPTCHA
var captchaResponse = grecaptcha.getResponse();
if (!captchaResponse.length) {
captchaError.style.display = "block";
return;
}
paymentWarning.style.display = "none";
let formData = new FormData();
@@ -646,7 +661,8 @@ include("_navbar.php");
document.getElementById("user").value = "";
document.getElementById("contact").value = "";
document.getElementById("paymentEmail").value = "";
document.getElementById("city").value = "";
document.getElementById("city").value = "";
grecaptcha.reset(); // reset captcha after submission
}
);
}

View File

@@ -2,6 +2,8 @@
<title>Start a Montessori Teacher Training Franchise with IIMTT</title>
<meta name="description" content="Join hands with IIMTT and start your own Montessori teacher training franchise. Our proven model and comprehensive support will ensure your success!">
<link rel="canonical" href="https://iimtt.org/partnership">
<!-- Add Google reCAPTCHA script -->
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
</head>
<body>
<!-- Google Tag Manager (noscript) -->
@@ -280,6 +282,11 @@
<input type="text" class="form-control" id="addr" name="address"
placeholder="Enter your Full Address" required>
</div>
<!-- ✅ Google reCAPTCHA Widget -->
<div class="form-group text-center">
<div class="g-recaptcha" data-sitekey="6LfLjvgrAAAAAIlFINpRhfP5HgnJbJ8lPQbVky8Z"></div>
<p id="captchaError" style="color: red; display: none;">Please verify you are not a robot.</p>
</div>
<div class="form-group mb-0">
<button style="background-color: #f7a325;" class="btn btn-sm btn-block lift text-white" type="button" onclick="submitForm()">&nbsp;Send message</button>
</div>
@@ -894,6 +901,7 @@
var success = document.getElementById('success');
var emailError = document.getElementById('emailError');
// var req = document.getElementById("req");
var captchaError = document.getElementById('captchaError');
function setOptions(s) {
// console.log(s[s.selectedIndex].value); // get value
option = s[s.selectedIndex].value;
@@ -906,6 +914,7 @@
email = document.getElementById("email").value;
// message = document.getElementById("message").value;
success.style.display = "none";
captchaError.style.display = "none";
// subject = req.options[req.selectedIndex].value;
console.log(name+phn+addr+email);
if (name == '' || addr == '' || phn == '' || email == '') {
@@ -921,6 +930,12 @@
} else {
emailError.style.display = "none";
warning.style.display = "none";
// ✅ Verify reCAPTCHA
var captchaResponse = grecaptcha.getResponse();
if (!captchaResponse.length) {
captchaError.style.display = "block";
return;
}
let formData = new FormData();
formData.append('formName', 'IIMTT-Partnership-Contact-Form');
formData.append('business_type', 'iimtt');
@@ -947,6 +962,7 @@
document.getElementById("phn").value = "";
document.getElementById("addr").value = "";
document.getElementById("email").value = "";
grecaptcha.reset(); // reset captcha after submission
// document.getElementById("message").value = "";
// window.location.href = "contact-back";