@model LoginViewModel @{ string logoPath = "/images/logo-blue.svg"; // If we are using a CDN, let's replace it if (Config.UseCdn) { if (!string.IsNullOrEmpty(Config.CdnHost)) { logoPath = Config.CdnHost.TrimEnd('/') + logoPath; } } } @if (Config.UserConfig.LoginEnabled) {
Teknik

@await Html.PartialAsync("_ValidationSummary") @if (Model.EnableLocalLogin) {
@if (Model.AllowRememberLogin) {
}
}
} else {

Authentication is currently disabled.

}