Lost your password? Please enter your username or email address. You will receive a link to create a new password via email.

// Optional enhancement: highlight nav item based on URL document.addEventListener("DOMContentLoaded", function () { const navItems = document.querySelectorAll(".urna-bottom-navigation .item"); const path = window.location.pathname; navItems.forEach((item) => { const link = item.querySelector("a"); if (link && link.getAttribute("href") && path.includes(link.getAttribute("href"))) { item.classList.add("active"); } }); });