@inherits LayoutComponentBase
|
|
|
<MudThemeProvider Theme="_currentTheme" />
|
<MudSnackbarProvider />
|
|
<MudContainer MaxWidth="MaxWidth.Small" Class="d-flex align-center" Style="height: 100vh;">
|
<div class="d-flex flex-column mud-width-full">
|
<MudPaper Elevation="25" Class="pa-8" Width="100%" MaxWidth="500px">
|
<MudIcon Icon="@Icons.Custom.Brands.TikTok" Size="Size.Large" Style="width:100px; height:100px;" />
|
@Body
|
</MudPaper>
|
<MudAlert Severity="Severity.Info" Class="mt-8 mud-width-full" Style="max-width:500px;" >テストログイン画面</MudAlert>
|
</div>
|
</MudContainer>
|
|
@code {
|
private MudTheme _currentTheme = new MudBlazorAdminDashboard();
|
}
|