@page @model LoginModel @{ ViewData["Title"] = "Log in"; }

@ViewData["Title"]

Use a local account to log in.


Forgot your password?

Register as a new user

Resend email confirmation

Use another service to log in.


@{ if ((Model.ExternalLogins?.Count ?? 0) == 0) {

There are no external authentication services configured. See this article about setting up this ASP.NET application to support logging in via external services.

} else {

@foreach (var provider in Model.ExternalLogins!) { }

} }
@section Scripts { }