简体   繁体   中英

How to customize Create Account page for the SignUp_SignIn Custom Policy in Azure B2C?

I only want email address, first name, last name and password fields when a user wants to create an account. I also want to disable the Send Verification Code button. Where and how do I configure that page to only show those fields? I'm using unified.html file from the Azure-AD-B2C-page-templates solution.

在此处输入图片说明

Remove the outputClaim reenterPassword, displayName in the LocalAccountSignUpWithEmail technical profile and For disabling the email verification set the EnforceEmailVerification metadata to false.

<ClaimsProvider>
  <DisplayName>Local Account</DisplayName>
  <TechnicalProfiles>
    <TechnicalProfile Id="LocalAccountSignUpWithLogonEmail">
      <Metadata>
        <Item Key="EnforceEmailVerification">false</Item>
      </Metadata>
    </TechnicalProfile>
  </TechnicalProfiles>
</ClaimsProvider>

Please refer the document for more information.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM