AutoG Portal
document.addEventListener("DOMContentLoaded", function () {
const params = new URLSearchParams(window.location.search);
const email = params.get("user_email");
if (email) {
const emailInput = document.getElementById('user_login');
if (emailInput) {
emailInput.value = decodeURIComponent(email);
emailInput.focus();
}
}
});