decePubClient/Pages/Login.razor

17 lines
379 B
Plaintext
Raw Normal View History

2022-02-14 01:51:52 +01:00
@page "/login"
@inherits PagesBase
<Title>@CascadingState.Localizer["Login"]</Title>
<section class="block relative w-full h-full neomorphInset is-nxsmall rounded-xl">
<div class="flex flex-col space-y-4 p-4 md:p-5 w-full h-full absolute overflow-y-auto">
<LoginDisplay />
</div>
</section>
@code {
[CascadingParameter] CascadingState CascadingState { get; set; }
}