Password updated

Your password was updated successfully. You were automatically logged in and can continue your session.

Go to Homepage

Update Password

Please enter your new password in the field below. Make sure you are not using your current password.

document.getElementById("updatePasswordForm").addEventListener("submit", function (event) { console.log("Password update process initiated"); // Get the password value const passwordField = document.getElementById("wf-update-password"); const password = passwordField.value.trim(); // Password validation regex const strongPasswordRegex = /^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[@$!%*?&])[A-Za-z\d@$!%*?&]{8,}$/; // Validate the password if (!strongPasswordRegex.test(password)) { alert( "Password must be at least 8 characters long, include an uppercase letter, a number, and a special character." ); event.preventDefault(); // Stop form submission return; } console.log("Valid password. Proceeding with form submission..."); });