Customising the message/error text in Azure AD B2C custom policies

不打扰是莪最后的温柔 提交于 2020-03-25 18:21:48

问题


I want to Customizing the message/error text in Azure AD B2C custom policie,Not getting a proper way to do this.has anyone done this in their B2C custom Policies

I want to customize the Verification is necessary. Please click Send button. test which is under "ver_intro_msg" id , I added following to Building Block. Let me know where it goes wrong

    <ContentDefinition Id="api.localaccountsignup">
    <Metadata>
    <Item Key="DisplayName">Local account sign up page</Item>
  </Metadata>

  <LocalizedResourcesReferences MergeBehavior="Prepend">
    <LocalizedResourcesReference Language="en" LocalizedResourcesReferenceId="api.localaccountsignup.en" />
  </LocalizedResourcesReferences>
  </ContentDefinition>
    </ContentDefinitions>
    <Localization Enabled="true">
  <SupportedLanguages DefaultLanguage="en" MergeBehavior="ReplaceAll">
    <SupportedLanguage>en</SupportedLanguage>
  </SupportedLanguages>
  <LocalizedResources Id="api.localaccountsignup.en">
    <LocalizedStrings>
  <LocalizedString ElementType="UxElement" StringId="ver_intro_msg">Wellcome to Buckman Compliance Portal</LocalizedString>
  <LocalizedString ElementType="UxElement" StringId="ver_info_msg">Cheak Your Regisered Mail For OTP</LocalizedString>
    </LocalizedStrings>
  </LocalizedResources>
</Localization>

来源:https://stackoverflow.com/questions/60707992/customising-the-message-error-text-in-azure-ad-b2c-custom-policies

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!