.register-page { padding: 5% auto; width: 60%; display: flex; flex-direction: column; align-items: center; justify-content: center; margin: auto; text-align: center; } .register-page #recaptchaRegister { margin-top: 20px; } .register-page .form-link { width: fit-content !important; white-space: nowrap; } .register-page .forgot-password-link { margin: 10px 0px; text-decoration: none; border-bottom: solid 1px #888; padding-bottom: 5px; width: 130px; margin-bottom: 10px; align-items: right; } .register-page .form-link:not(.forgot-password-link) { width: 85px; margin: auto; text-align: center; } .register-page .collapse-btn { margin: 30px auto; }
إنشاء حساب
شكرا لتسجيلك. تم إرسال رمز التفعيل إلى بريدك الإلكتروني. يرجى التحقق من بريدك الالكتروني لتفعيل حسابك.
document.addEventListener("DOMContentLoaded", function () { const script = document.createElement('script'); script.src = 'https://www.google.com/recaptcha/api.js'; script.async = true; script.defer = true; document.head.appendChild(script); const params = new URLSearchParams(window.location.search); const message = params.get("message"); const status = params.get("status"); const errorsBox = document.getElementById("FormErrors"); if ((status == 'error') && message) { errorsBox.innerHTML = message; errorsBox.classList.remove("d-none"); } else if(status == 'success'){ errorsBox.classList.add("d-none"); document.getElementById("FormDataDiv").classList.add("d-none"); document.getElementById("successMessageDiv").classList.remove("d-none"); } });