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

@ViewData["Title"]

Use a local account to log in.


Use another service to log in.


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

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

} else {

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

} }
@section Scripts { }