CoolFace
Apppublic

Roz-28/Health_Director

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
SCRIPT2.js40 linesDownload Raw Back to static
1// Toggle between English and Arabic when the links are clicked2document.getElementById('lang-en').addEventListener('click', function(e) {3    e.preventDefault();4    // Switch to English (LTR)5    document.documentElement.setAttribute('lang', 'en');6    document.documentElement.setAttribute('dir', 'ltr');7    // Update text content and placeholders to English8    document.getElementById('formTitle').textContent =9      document.getElementById('formTitle').getAttribute('data-en');10    document.getElementById('fullname').placeholder =11      document.getElementById('fullname').getAttribute('data-en');12    document.getElementById('email').placeholder =13      document.getElementById('email').getAttribute('data-en');14    document.getElementById('password').placeholder =15      document.getElementById('password').getAttribute('data-en');16    document.getElementById('confirm-password').placeholder =17      document.getElementById('confirm-password').getAttribute('data-en');18    document.getElementById('submitBtn').textContent =19      document.getElementById('submitBtn').getAttribute('data-en');20  });21  22  document.getElementById('lang-ar').addEventListener('click', function(e) {23    e.preventDefault();24    // Switch to Arabic (RTL)25    document.documentElement.setAttribute('lang', 'ar');26    document.documentElement.setAttribute('dir', 'rtl');27    // Update text content and placeholders to Arabic28    document.getElementById('formTitle').textContent =29      document.getElementById('formTitle').getAttribute('data-ar');30    document.getElementById('fullname').placeholder =31      document.getElementById('fullname').getAttribute('data-ar');32    document.getElementById('email').placeholder =33      document.getElementById('email').getAttribute('data-ar');34    document.getElementById('password').placeholder =35      document.getElementById('password').getAttribute('data-ar');36    document.getElementById('confirm-password').placeholder =37      document.getElementById('confirm-password').getAttribute('data-ar');38    document.getElementById('submitBtn').textContent =39      document.getElementById('submitBtn').getAttribute('data-ar');40  });