Can I check if a user logged in with a default password

0
Hello,   I have to create a login page where I want to check if a user entered a default password (for example '123'). If true, the user automatically gets sent to a change password page. If false, the user gets sent to the default home page. How can I achieve this?
asked
2 answers
0

Add a boolean 'HasChangedPassword' to the Account entity. Set it to true by default.

If the user changes his password, set it to false.

answered
0

Go to navigation in Studio Pro.

Don't route the user to a page, but route the user to a Microflow.

Be aware that at the end of this microflow with a 'show a page' action.

answered