22 lines
433 B
Plaintext
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 {
|
|
|
|
}
|