document.addEventListener('DOMContentLoaded', function() { var emailLabel = document.querySelector('label[for="signup-email-input"]'); if (emailLabel) { emailLabel.textContent = 'Work Email'; } var emailInput = document.getElementById('signup-email-input'); if (emailInput) { emailInput.placeholder = 'Work Email'; } var passcodeLabel = document.querySelector('label[for="signup-name-input"]'); if (passcodeLabel) { passcodeLabel.textContent = 'Company Name'; } var passcodeInput = document.getElementById('signup-name-input'); if (passcodeInput) { passcodeInput.placeholder = 'Company Name'; } window.TXT_STEP_TO_USE_PROMO_CODE = 'Copy and paste this URL on your web browser to get your Grab voucher.'; function replacePopupTitle() { const promoTitle = document.getElementById('promo_mech_title'); if (promoTitle && promoTitle.innerText.includes('Copy and utilize this Promo code in the Website / Marketplace')) { promoTitle.innerText = window.TXT_STEP_TO_USE_PROMO_CODE; } } replacePopupTitle(); });