Has anyone come up with a coding way to force a user to change their password? I often have to reset a user’s password, but for security reasons can’t ask them what they would like their password to be. Therefore, I would like to code something like:
if (password == 'password') {
displayPasswordChangeForm();
} else {
showHomePage();Any ideas on what I could try?
TIA