0

The Language Customization feature in Azure AD B2C is currently in preview and allows only simple customization of elements of the SignIn / SignUp pages.

How can I add my own elements to these pages - e.g. some explanation text, footer, disclaimer etc. - which also can then be localized to the languages enabled/supported within the policy?

Saca
  • 10,355
  • 1
  • 34
  • 47
OliverB
  • 1,793
  • 2
  • 10
  • 9

1 Answers1

2

As you've outlined, Azure AD B2C's Language Customization feature only allows you to customize pre-existing text, you can't add your own text via that feature.

What you can do is have your own custom UIs, add your own elements there and implement localization based for those custom elements using the ?locale query string parameter that's included in the request B2C makes to retrieve your custom UI page.

Saca
  • 10,355
  • 1
  • 34
  • 47
  • I want to modify existing text but not able to do this. look this https://stackoverflow.com/questions/60707992/customising-the-message-error-text-in-azure-ad-b2c-custom-policies – amyy Mar 17 '20 at 11:44