Customers access

Request password
Turn the device to view the web.
Logo Gaviota

// Check if the URL contains the 'wpmll_success' parameter if (currentURL.includes('wpmll_success')) { // Show the response view instead of the alert document.querySelector('.response-outer').style.display = 'block'; }

// Check if the URL contains the 'wpmll_error' parameter if (currentURL.includes('wpmll_error')) { // Do something if 'wpmll_error' is present, for example, show an error message. alert('The operation has failed'); }