Enter your email and password to register.

A link to set a new password will be sent to your email address.

// 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"); } }); });