skip to Main Content

I have web application and created User Signin_signup user flow for user sign up process, but while user signup email verification code is asking for next process.

I want to disable the Email verification while user Signup on Azure AD B2C Tenant.

2

Answers


  1. Refer this.

    Basically:

    • Select User flows.
    • Select the user flow for which you want to disable email verification.
    • Select Page layouts.
    • Select Local account sign-up page.
    • Under User attributes, select Email Address.
    • In the Requires Verification drop-down, select No.
    • Select Save. Email verification is now disabled for this user flow.
    Login or Signup to reply.
  2. I tried to reproduce the same in my environment to disable the email verification

    *In order to disable the email verification while user signup process, follow the below steps.

    Azure Portal > Azure AD B2C > User Flows > B2C_1_SigninSignup > Page layouts > Local account sign up page.

    enter image description here
    once update the changes, try to create a user account, like below.

    Azure Portal > Azure AD B2C > User Flows > B2C_1_SigninSignup > Run User Flow

    enter image description here

    Email verification is disabled while user signup process.

    enter image description here

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search