title | titleSuffix | description | services | author | manager | ms.service | ms.workload | ms.topic | ms.date | ms.custom | ms.author | ms.subservice | zone_pivot_groups |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Customize the user interface with HTML templates |
Azure AD B2C |
Learn how to customize the user interface with HTML templates for your applications that use Azure Active Directory B2C. |
active-directory-b2c |
msmimart |
celestedg |
active-directory |
identity |
how-to |
06/27/2021 |
project-no-code |
mimart |
B2C |
b2c-policy-type |
[!INCLUDE active-directory-b2c-choose-user-flow-or-custom-policy]
Branding and customizing the user interface that Azure Active Directory B2C (Azure AD B2C) displays to your customers helps provide a seamless user experience in your application. These experiences include signing up, signing in, profile editing, and password resetting. This article introduces the methods of user interface (UI) customization.
Tip
If you want to modify only the banner logo, background image, and background color of your user flow pages, you can try the Company branding feature.
Azure AD B2C runs code in your customer's browser by using Cross-Origin Resource Sharing (CORS). At runtime, content is loaded from a URL you specify in your user flow or custom policy. Each page in the user experience loads its content from the URL you specify for that page. After content is loaded from your URL, it's merged with an HTML fragment inserted by Azure AD B2C, and then the page is displayed to your customer.
Create an HTML page with your own branding to serve your custom page content. This page can be a static *.html
page, or a dynamic page like .NET, Node.js, or PHP.
Your custom page content can contain any HTML elements, including CSS and JavaScript, but cannot include insecure elements like iframes. The only required element is a div element with id
set to api
, such as this one <div id="api"></div>
within your HTML page.
<!DOCTYPE html>
<html>
<head>
<title>My Product Brand Name</title>
</head>
<body>
<div id="api"></div>
</body>
</html>
Instead of creating your custom page content from scratch, you can customize Azure AD B2C's default page content.
The following table lists the default page content provided by Azure AD B2C. Download the files and use them as a starting point for creating your own custom pages.
Default page | Description | Content definition ID (custom policy only) |
---|---|---|
exception.html | Error page. This page is displayed when an exception or an error is encountered. | api.error |
selfasserted.html | Self-Asserted page. Use this file as a custom page content for a social account sign-up page, a local account sign-up page, a local account sign-in page, password reset, and more. The form can contain various input controls, such as: a text input box, a password entry box, a radio button, single-select drop-down boxes, and multi-select check boxes. | api.localaccountsignin, api.localaccountsignup, api.localaccountpasswordreset, api.selfasserted |
multifactor-1.0.0.html | Multi-factor authentication page. On this page, users can verify their phone numbers (by using text or voice) during sign-up or sign-in. | api.phonefactor |
updateprofile.html | Profile update page. This page contains a form that users can access to update their profile. This page is similar to the social account sign-up page, except for the password entry fields. | api.selfasserted.profileupdate |
unified.html | Unified sign-up or sign-in page. This page handles the user sign-up and sign-in process. Users can use enterprise identity providers, social identity providers such as Facebook or Google+, or local accounts. | api.signuporsignin |
When using your own HTML and CSS files to customize the UI, host your UI content on any publicly available HTTPS endpoint that supports CORS. For example, Azure Blob storage, Azure App Services, web servers, CDNs, AWS S3, or file sharing systems.
-
Use an absolute URL when you include external resources like media, CSS, and JavaScript files in your HTML file.
-
Using page layout version 1.2.0 and above, you can add the
data-preload="true"
attribute in your HTML tags to control the load order for CSS and JavaScript. Withdata-preload="true"
, the page is constructed before being shown to the user. This attribute helps prevent the page from "flickering" by preloading the CSS file, without the un-styled HTML being shown to the user. The following HTML code snippet shows the use of thedata-preload
tag.<link href="https://path-to-your-file/sample.css" rel="stylesheet" type="text/css" data-preload="true"/>
-
We recommend that you start with the default page content and build on top of it.
-
You can include JavaScript in your custom content.
-
Supported browser versions are:
- Internet Explorer 11, 10, and Microsoft Edge
- Limited support for Internet Explorer 9 and 8
- Google Chrome 42.0 and above
- Mozilla Firefox 38.0 and above
- Safari for iOS and macOS, version 12 and above
-
Due to security restrictions, Azure AD B2C doesn't support
frame
,iframe
, orform
HTML elements.
You localize your HTML content by enabling language customization in your Azure AD B2C tenant. Enabling this feature allows Azure AD B2C to set the HTML page language attribute and pass the OpenID Connect parameter ui_locales
to your endpoint.
During page load, Azure AD B2C sets the HTML page language attribute with the current language. For example, <html lang="en">
. To render different styles per the current language, use the CSS :lang
selector along with your CSS definition.
The following example defines the following classes:
imprint-en
- Used when the current language is English.imprint-de
- Used when the current language is German.imprint
- Default class that is used when the current language is neither English nor German.
.imprint-en:lang(en),
.imprint-de:lang(de) {
display: inherit !important;
}
.imprint {
display: none;
}
The following HTML elements will be shown or hidden according to the page language:
<a class="imprint imprint-en" href="Link EN">Imprint</a>
<a class="imprint imprint-de" href="Link DE">Impressum</a>
The language customization feature allows Azure AD B2C to pass the OpenID Connect parameter ui_locales
to your endpoint. Your content server can use this parameter to provide language-specific HTML pages.
Note
Azure AD B2C doesn't pass OpenID Connect parameters, such as ui_locales
, to the exception pages.
Content can be pulled from different places based on the locale that's used. In your CORS-enabled endpoint, you set up a folder structure to host content for specific languages. You'll call the right one if you use the wildcard value {Culture:RFC5646}
.
For example, your custom page URI might look like:
https://contoso.blob.core.windows.net/{Culture:RFC5646}/myHTML/unified.html
You can load the page in French by pulling content from:
https://contoso.blob.core.windows.net/fr/myHTML/unified.html
Here's an overview of the process:
- Prepare a location to host your custom page content (a publicly accessible, CORS-enabled HTTPS endpoint).
- Download and customize a default page content file, for example
unified.html
. - Publish your custom page content your publicly available HTTPS endpoint.
- Set cross-origin resource sharing (CORS) for your web app.
- Point your policy to your custom policy content URI.
[!INCLUDE active-directory-b2c-customization-prerequisites]
Create a custom page content with your product's brand name in the title.
-
Copy the following HTML snippet. It is well-formed HTML5 with an empty element called <div id="api"></div> located within the <body> tags. This element indicates where Azure AD B2C content is to be inserted.
<!DOCTYPE html> <html> <head> <title>My Product Brand Name</title> </head> <body> <div id="api"></div> </body> </html>
-
Paste the copied snippet in a text editor
-
Use CSS to style the UI elements that Azure AD B2C inserts into your page. The following example shows a simple CSS file that also includes settings for the sign-up injected HTML elements:
h1 { color: blue; text-align: center; } .intro h2 { text-align: center; } .entry { width: 400px ; margin-left: auto ; margin-right: auto ; } .divider h2 { text-align: center; } .create { width: 400px ; margin-left: auto ; margin-right: auto ; }
-
Save the file as customize-ui.html.
Note
HTML form elements will be removed due to security restrictions if you use login.microsoftonline.com. If you want to use HTML form elements in your custom HTML content, use b2clogin.com.
In this article, we use Azure Blob storage to host our content. You can choose to host your content on a web server, but you must enable CORS on your web server.
To host your HTML content in Blob storage, perform the following steps:
- Sign in to the Azure portal.
- On the Hub menu, select New > Storage > Storage account.
- Select a Subscription for your storage account.
- Create a Resource group or select an existing one.
- Enter a unique Name for your storage account.
- Select the Geographic location for your storage account.
- Deployment model can remain Resource Manager.
- Performance can remain Standard.
- Change Account Kind to Blob storage.
- Replication can remain RA-GRS.
- Access tier can remain Hot.
- Select Review + create to create the storage account. After the deployment is completed, the Storage account page opens automatically.
To create a public container in Blob storage, perform the following steps:
- Under Blob service in the left-hand menu, select Blobs.
- Select +Container.
- For Name, enter root. The name can be a name of your choosing, for example contoso, but we use root in this example for simplicity.
- For Public access level, select Blob, then OK.
- Select root to open the new container.
- Select Upload.
- Select the folder icon next to Select a file.
- Navigate to and select customize-ui.html, which you created earlier in the Page UI customization section.
- If you want to upload to a subfolder, expand Advanced and enter a folder name in Upload to folder.
- Select Upload.
- Select the customize-ui.html blob that you uploaded.
- To the right of the URL text box, select the Copy to clipboard icon to copy the URL to your clipboard.
- In web browser, navigate to the URL you copied to verify the blob you uploaded is accessible. If it is inaccessible, for example if you encounter a
ResourceNotFound
error, make sure the container access type is set to blob.
Configure Blob storage for Cross-Origin Resource Sharing by performing the following steps:
- In the menu, select CORS.
- For Allowed origins, enter
https://your-tenant-name.b2clogin.com
. Replaceyour-tenant-name
with the name of your Azure AD B2C tenant. For example,https://fabrikam.b2clogin.com
. Use all lowercase letters when entering your tenant name. - For Allowed Methods, select both
GET
andOPTIONS
. - For Allowed Headers, enter an asterisk (*).
- For Exposed Headers, enter an asterisk (*).
- For Max age, enter 200.
- Select Save.
Validate that you're ready by performing the following steps:
- Repeat the configure CORS step. For Allowed origins, enter
https://www.test-cors.org
- Navigate to www.test-cors.org
- For the Remote URL box, paste the URL of your HTML file. For example,
https://your-account.blob.core.windows.net/root/azure-ad-b2c/unified.html
- Select Send Request.
The result should be
XHR status: 200
. If you receive an error, make sure that your CORS settings are correct. You might also need to clear your browser cache or open an in-private browsing session by pressing Ctrl+Shift+P.
::: zone pivot="b2c-user-flow"
- Choose All services in the top-left corner of the Azure portal, and then search for and select Azure AD B2C.
- Select User flows, and then select the B2C_1_signupsignin1 user flow.
- Select Page layouts, and then under Unified sign-up or sign-in page, click Yes for Use custom page content.
- In Custom page URI, enter the URI for the custom-ui.html file that you recorded earlier.
- At the top of the page, select Save.
- In your Azure AD B2C tenant, select User flows and select the B2C_1_signupsignin1 user flow.
- At the top of the page, click Run user flow.
- Click the Run user flow button.
You should see a page similar to the following example with the elements centered based on the CSS file that you created:
::: zone-end
::: zone pivot="b2c-custom-policy"
To configure UI customization, copy the ContentDefinition and its child elements from the base file to the extensions file.
-
Open the base file of your policy. For example,
SocialAndLocalAccounts/
TrustFrameworkBase.xml
. This base file is one of the policy files included in the custom policy starter pack, which you should have obtained in the prerequisite, Get started with custom policies. -
Search for and copy the entire contents of the ContentDefinitions element.
-
Open the extension file. For example, TrustFrameworkExtensions.xml. Search for the BuildingBlocks element. If the element doesn't exist, add it.
-
Paste the entire contents of the ContentDefinitions element that you copied as a child of the BuildingBlocks element.
-
Search for the ContentDefinition element that contains
Id="api.signuporsignin"
in the XML that you copied. -
Change the value of LoadUri to the URL of the HTML file that you uploaded to storage. For example,
https://your-storage-account.blob.core.windows.net/your-container/customize-ui.html
.Your custom policy should look like the following code snippet:
<BuildingBlocks> <ContentDefinitions> <ContentDefinition Id="api.signuporsignin"> <LoadUri>https://your-storage-account.blob.core.windows.net/your-container/customize-ui.html</LoadUri> <RecoveryUri>~/common/default_page_error.html</RecoveryUri> <DataUri>urn:com:microsoft:aad:b2c:elements:unifiedssp:1.0.0</DataUri> <Metadata> <Item Key="DisplayName">Signin and Signup</Item> </Metadata> </ContentDefinition> </ContentDefinitions> </BuildingBlocks>
-
Save the extensions file.
- Make sure you're using the directory that contains your Azure AD B2C tenant by selecting the Directory + subscription filter in the top menu and choosing the directory that contains your tenant.
- Search for and select Azure AD B2C.
- Under Policies, select Identity Experience Framework.
- Select Upload custom policy.
- Upload the extensions file that you previously changed.
- Select the policy that you uploaded, and then select Run now.
- You should be able to sign up by using an email address.
By using Azure AD B2C custom policies, you can send a parameter in the URL path, or a query string. By passing the parameter to your HTML endpoint, you can dynamically change the page content. For example, you can change the background image on the Azure AD B2C sign-up or sign-in page, based on a parameter that you pass from your web or mobile application. The parameter can be any claim resolver, such as the application ID, language ID, or custom query string parameter, such as campaignId
.
To send query string parameters, in the relying party policy, add a ContentDefinitionParameters
element as shown below.
<RelyingParty>
<DefaultUserJourney ReferenceId="SignUpOrSignIn" />
<UserJourneyBehaviors>
<ContentDefinitionParameters>
<Parameter Name="campaignId">{OAUTH-KV:campaignId}</Parameter>
<Parameter Name="lang">{Culture:LanguageName}</Parameter>
<Parameter Name="appId">{OIDC:ClientId}</Parameter>
</ContentDefinitionParameters>
</UserJourneyBehaviors>
...
</RelyingParty>
In your content definition, change the value of LoadUri
to https://<app_name>.azurewebsites.net/home/unified
. Your custom policy ContentDefinition
should look like the following code snippet:
<ContentDefinition Id="api.signuporsignin">
<LoadUri>https://<app_name>.azurewebsites.net/home/unified</LoadUri>
...
</ContentDefinition>
When Azure AD B2C loads the page, it makes a call to your web server endpoint:
https://<app_name>.azurewebsites.net/home/unified?campaignId=123&lang=fr&appId=f893d6d3-3b6d-480d-a330-1707bf80ebea
Content can be pulled from different places based on the parameters used. In your CORS-enabled endpoint, set up a folder structure to host content. For example, you can organize the content in following structure. Root folder/folder per language/your html files. For example, your custom page URI might look like:
<ContentDefinition Id="api.signuporsignin">
<LoadUri>https://contoso.blob.core.windows.net/{Culture:LanguageName}/myHTML/unified.html</LoadUri>
...
</ContentDefinition>
Azure AD B2C sends the two letter ISO code for the language, fr
for French:
https://contoso.blob.core.windows.net/fr/myHTML/unified.html
::: zone-end
You can find sample templates for UI customization here:
git clone https://github.com/azure-ad-b2c/html-templates
This project contains the following templates:
To use the sample:
-
Clone the repo on your local machine. Choose a template folder
/AzureBlue
,/MSA
, or/classic
. -
Upload all the files under the template folder and the
/src
folder, to Blob storage as described in the previous sections. -
Next, open each
\*.html
file in the template folder. Then replace all instances ofhttps://login.microsoftonline.com
URLs, with the URL you uploaded in step 2. For example:From:
https://login.microsoftonline.com/templates/src/fonts/segoeui.WOFF
To:
https://your-storage-account.blob.core.windows.net/your-container/templates/src/fonts/segoeui.WOFF
-
Save the
\*.html
files and upload them to the Blob storage. -
Now modify the policy, pointing to your HTML file, as mentioned previously.
-
If you see missing fonts, images, or CSS, check your references in the extensions policy and the
\*.html
files.
To use company branding assets in a custom HTML, add the following tags outside the <div id="api">
tag. The image source is replaced with that of the background image and banner logo.
<img data-tenant-branding-background="true" />
<img data-tenant-branding-logo="true" alt="Company Logo" />
Learn how to enable client-side JavaScript code.