RobotNet/RobotNet.IdentityServer/Components/Account/Pages/OpenIdDictManager.razor
2025-10-15 15:15:53 +07:00

22 lines
433 B
Plaintext

@page "/Account/OpenIdDictManager"
@rendermode InteractiveServer
@using MudBlazor
<MudTabs Elevation="2" Rounded="true" Style="height:auto; max-height:100%;">
<MudTabPanel Text=" Application" Icon="@Icons.Material.Filled.Face4">
<OpenIdDictApplication />
</MudTabPanel>
<MudTabPanel Text=" Scope" Icon="@Icons.Material.Filled.Face5">
<OpenIdDictScope />
</MudTabPanel>
</MudTabs>
@code {
}