ホテル管理システム
ogi
yesterday 1a1c8e71fcd14858f595029f089b2d4a00202b32
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@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();
}