Login:



Client Portal
Sign in with your celtic-corporations.com client credentials


Not yet a member? Start membership


Forgot your password?

const togglePassword = document.querySelector("#togglePassword"); const password = document.querySelector("#InputPassword"); togglePassword.addEventListener("click", function () { // toggle the type attribute const type = password.getAttribute("type") === "password" ? "text" : "password"; password.setAttribute("type", type); // toggle the icon this.classList.toggle("fa-eye"); }); // prevent form submit // const form = document.querySelector("form"); // form.addEventListener('submit', function (e) { // e.preventDefault(); // }); const togglePass = document.querySelector("#togglePass"); const pass = document.querySelector("#InputPassword2"); togglePass.addEventListener("click", function () { // toggle the type attribute const type = pass.getAttribute("type") === "password" ? "text" : "password"; pass.setAttribute("type", type); // toggle the icon this.classList.toggle("fa-eye"); });