diff --git a/blazor/common/authentication/blazor-microsoft-entra-id.md b/blazor/common/authentication/blazor-microsoft-entra-id.md index 5dade60d4..53a33a7b4 100644 --- a/blazor/common/authentication/blazor-microsoft-entra-id.md +++ b/blazor/common/authentication/blazor-microsoft-entra-id.md @@ -13,7 +13,7 @@ This guide shows how to secure the [Syncfusion® Blazor DataGrid](https://www.sy ## Create a Blazor project -If you already have a Blazor project configured, you can skip this section and proceed to **Install required packages**. +If you already have a Blazor project configured, you can skip this section and proceed to [Install required packages](../authentication/blazor-microsoft-entra-id#install-required-packages). Otherwise, create a new Blazor application by following the [Syncfusion® getting started guide](https://blazor.syncfusion.com/documentation/getting-started/blazor-web-app) for a **Blazor Web App (Interactive Server)**. @@ -67,17 +67,17 @@ Include the theme stylesheet and script references in the `App.razor` file. {% highlight razor tabtitle="App.razor" %}
- .... + .... - .... + .... - .... + .... - .... + .... {% endhighlight %} @@ -147,7 +147,7 @@ using Syncfusion.Blazor; var builder = WebApplication.CreateBuilder(args); -// Configure authentication with Microsoft Entra ID (Azure AD) +// Configure authentication with Microsoft Entra ID (Azure AD). builder.Services.AddAuthentication(OpenIdConnectDefaults.AuthenticationScheme) .AddMicrosoftIdentityWebApp(builder.Configuration.GetSection("AzureAd")); @@ -156,10 +156,10 @@ builder.Services.AddAuthorization(); builder.Services.AddRazorComponents() .AddInteractiveServerComponents(); -// Register the Syncfusion® Blazor service +// Register the Syncfusion® Blazor service. builder.Services.AddSyncfusionBlazor(); -// Add controllers with UI endpoints for Microsoft Identity (SignIn/SignOut) +// Add controllers with UI endpoints for Microsoft Identity (SignIn/SignOut). builder.Services.AddControllersWithViews().AddMicrosoftIdentityUI(); var app = builder.Build(); @@ -236,24 +236,25 @@ Create a protected page that displays the **Syncfusion® Blazor DataGrid** only Logout -