简体   繁体   English

如何在 Azure B2C 中为 SignUp_SignIn 自定义策略自定义创建帐户页面?

[英]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.我正在使用 Azure-AD-B2C-page-templates 解决方案中的统一 .html 文件。

在此处输入图片说明

Remove the outputClaim reenterPassword, displayName in the LocalAccountSignUpWithEmail technical profile and For disabling the email verification set the EnforceEmailVerification metadata to false.删除LocalAccountSignUpWithEmail 技术配置文件中的 outputClaim reenterPassword、displayName 和为了禁用电子邮件验证将EnforceEmailVerification元数据设置为 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.请参阅文档以获取更多信息。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 启用了MFA的Azure AD B2C注册-登录策略-自定义登录页面 - Azure AD B2C SignUp-SignIn policy with MFA turned on - Custom Login Page 完成忘记密码后,Azure 自定义策略 B2c 如何重定向到注册页面? - Azure custom policy B2c after completing forgot password how to redirect to signup page? Azure AD B2C 注册和登录页面的自定义 URL - Custom URL for Azure AD B2C signup and signin pages 用于登录/注册生成404的Azure AD B2C自定义登录页面 - Azure AD B2C custom login page for signin/signup generating 404 如何修改 Azure Web 应用程序的 Azure AD B2C 登录/注册页面 - How to modify the Azure AD B2C SignIn/Signup page for Azure web app Azure AD B2C自定义登录策略显示SignUpSignIn - Azure AD B2C Custom SignIn Policy Displays SignUpSignIn Azure B2C 在统一注册/登录流程中首先显示注册页面 - Azure B2C Show Signup Page First in Unified Signup/Signin Flow 使用无密码 azure B2C 登录自定义策略生成 Azure AD 登录日志的推荐方法是什么? - What is the recommended approach for generating Azure AD Signin logs with passwordless azure B2C signin custom policy? Azure AD B2C-不重定向到登录/注册页面(login.microsoftonline.com…) - Azure AD B2C - Not redirecting to SignIn/SignUp Page(login.microsoftonline.com…) 如何在Azure B2C租户中显示自定义的注册页面? - How to display the customized signup page in Azure B2C tenant?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM