document.addEventListener("DOMContentLoaded", function () { const interval = setInterval(() => { const nameInput = document.querySelector('input[placeholder="Nombre"]'); const emailInput = document.querySelector('input[type="email"]'); if (nameInput) { nameInput.setAttribute("name", "aether_input_1"); nameInput.setAttribute("id", "aether_input_1"); nameInput.setAttribute("autocomplete", "off"); } if (emailInput) { emailInput.setAttribute("name", "aether_input_2"); emailInput.setAttribute("id", "aether_input_2"); emailInput.setAttribute("autocomplete", "off"); } if (nameInput && emailInput) { clearInterval(interval); } }, 500); });