Login
Create an Account
Forgot Your Password?
document.querySelectorAll('.redirect-link').forEach(function(link) { // Add a click event listener to each link link.addEventListener('click', function() { // Redirect to the URL specified in the data-url attribute window.location.href = link.getAttribute('data-url'); }); });