Create a new account or reset forgotten password

window.getRecaptchaToken_accountrequest = function(onSuccess, onError) { window.grecaptcha.execute("6LcR-24qAAAAAK99mViHCeY9rFc5bOxreCV-78VH", { action: "accountrequest" }).then(function (token) { const element = document.getElementById("g-recaptcha-response-wesnxaioexoswquq"); if (element) { element.value = token; } onSuccess(token, "accountrequest", "ce3de846e28b325d424ae48a9c576ff1aa817d5e882ad1001e27e8415c26bd24accountrequest"); }).catch(onError); } window.submitFormWithRecaptcha_accountrequest = function (token) { const form = document.getElementById("account-request"); const buttons = form.getElementsByClassName("g-recaptcha"); if (buttons && buttons.length > 0) { for (let button of buttons) { button.disabled = true; const currentClasses = Array.from(button.classList); for (let cls of currentClasses) { if (cls.startsWith('bg-')) { const bgClass = cls === 'bg-transparent' ? 'bg-grey' : cls + '-hover'; button.classList.remove(cls); button.classList.add(bgClass); } } button.innerText = 'Submitting ...'; }; } document.getElementById("g-recaptcha-response-accountrequest").value = token; form.submit(); }