Mentor registration

Are you ready to make a real impact?
Please fill-in this form and you will be contacted by one of our volunteers to discuss the next steps of our application process.
Your time and skills can make a positive difference for Ukrainians.

function onClick(e) { grecaptcha.ready(function() { grecaptcha.execute('6Ldh2WIqAAAAAMrxlYj0XXuak1ohl3aCJ1Ws7HJn', {action: 'submit'}).then(function(token) { const url = "https://balakun.org/welcome/captcha"; const data = { event: { token: token, expectedAction: "mentor-register", siteKey: "6Ldh2WIqAAAAAMrxlYj0XXuak1ohl3aCJ1Ws7HJn", } }; fetch(url, { method: "POST", headers: {'Content-Type':'application/json'}, body: JSON.stringify(data) }) .then(res => res.json()) .then(result => { console.log(result); if( result.result === "success" ){ let stForm = document.getElementById("reg-form"); if( stForm.checkValidity() ){ stForm.submit(); } else { grecaptcha.reset(); stForm.reportValidity(); } } else { document.getElementById("recaptcha-error").style.setProperty("display", "block"); } }); }); }); }