You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 lines
738 B

@page "/login"
@using IdentityServer.Pages.Authentication.Components
@layout EmptyLayout
<div class="d-flex align-center" style="height:calc(100% - 96px)">
<Login ReturnUrl=@ReturnUrl CreateAccountRoute="pages/authentication/register-v2"
ForgotPasswordRoute="pages/authentication/forgot-password-v2" />
</div>
<MFooter Padless Height=96 Style="background:transparent;">
<MRow Justify="JustifyTypes.Center">
<span target="_blank" class="neutral-lighten-3--text"
style="text-decoration:none;font-size:14px;">技术支持:农政通(北京)科技有限公司</span>
</MRow>
</MFooter>
@code {
[Parameter]
[SupplyParameterFromQuery]
public string ReturnUrl { get; set; }
}