This is a user management service that enables developers to focus on writing applications without worrying about where to store user information, user authentication and authorization flows and all that nonsense. This takes care of all that. Mmadu was coined from the igbo word "Mmadu" meaning people.
Flow:
User clicks a link to reset his password
User is redirected to a form where he inputs his user name,
A link is generated to reset the password, this link will contain a token that will expire at a configured time
A notification is sent depending on the domain notification options with the link
if notify by email , send via email
if notify by phone, send via phone
User clicks the link
The server validates the token and extracts the user information, and redirects to a reset password page where he inputs his new password and confirms it.
Password is reset.
We also implement a credentials expired property on the user to force the user to reset his/her password.
Password Should be able to be reset.
Flow: User clicks a link to reset his password User is redirected to a form where he inputs his user name, A link is generated to reset the password, this link will contain a token that will expire at a configured time A notification is sent depending on the domain notification options with the link
We also implement a credentials expired property on the user to force the user to reset his/her password.