Back button does not work in MFA from

When using Auth0 for Multi-Factor Authentication (MFA), if a user enters an incorrect email during the login process and click back button it does not work, how can i fix it?

Hi @mmekarishvili,

The previous button can only return the user to the previous step node.

If you do not have a previous step node, the previous button will not have any place else to go back.

This is mentioned in our Nodes and components documentation.

Cheers,
Rueben

When a user registers with an incorrect email address, they are directed to an email verification page without the ability to go back or change the email. This creates a dead-end situation where the user cannot proceed or return to correct their email (back button dont work)

can i add a function from action for this button to refresh the registration popup

Hi @mmekarishvili,

Thanks for your reply.

You could use the Jump button block as the back button to skip the current step and directly jump to the destination node.

Once that happens, you can make the user logout using session revocation: Sessions with Actions

You will need to use the onContinue event and log the user out by calling the api.redirect.sendUserTo() method to your https://YOUR_DOMAIN/v2/logout?redirectTo=LOGIN_PAGE_URL endpoint.

Let me know if you need further clarification on this.

Thanks,
Rueben