skip to Main Content

I have Azure AD b2c authentication in my application,
how do I add Azure Ad b2c language change button in my login page, I need to add language change button in my login page if a user click on EN or FR buttons the login should display accordingly.

I went through Microsoft docs: https://learn.microsoft.com/en-us/azure/active-directory/external-identities/user-flow-customize-language but I couldn’t find anything talking about it.

2

Answers


  1. It should be default behaviour, either by specifying "ui_locales" as a query parameter or directly supported by your browser.

    Login or Signup to reply.
  2. You’ll need to create a control in your custom HTML, eg a drop down to select language. Then, when the user select a new language, refresh the page with the respective ui_locales parameter in the URL.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search