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

@ViewData["Title"]

Login

Bitte melden Sie sich mit Ihrer UserID/Passwort an


@* *@
@*

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 { }