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>