MFA login process, user cannot change account

Hi @mab ,

Currently, you can achieve this by including a link in your page template (Universal Login Pages ) that points to a different page that logs the user out and then redirects them back to the login page. Unfortunately, you won’t be able to include the link on the widget itself, but you can make it appear as a link above/underneath the widget.
Here is an example of a page template that includes this link that only appears on the MFA pages:

<!DOCTYPE html>
<html lang="{{locale}}">
  <head>
    {%- auth0:head -%}
    <title>{{ prompt.screen.texts.pageTitle }}</title>
  </head>
  <body class="_widget-auto-layout">
    {% if prompt.name == "mfa-otp" or prompt.name == "mfa-recovery-code" %} 
      <div class="prompt-wrapper">
        <a href="https://YOUR_LOGOUT_LINK">Click here to Change Accounts</a>
        {%- auth0:widget -%}
        </div>
    {% else %}
      <div class="prompt-wrapper">
      {%- auth0:widget -%}
      </div>    
    {% endif %}
  </body>
</html>

Hope this helps!