@using System.Collections.Generic @using Microsoft.AspNet.Http @using Microsoft.AspNet.Http.Authentication @model LoginViewModel @inject SignInManager SignInManager @{ ViewData["Title"] = SR["Log in"]; }

@ViewData["Title"]

@SR["Use a local account to log in."]


@SR["Register as a new user?"]

@SR["Forgot your password?"]

@SR["Use another service to log in."]


@{ var loginProviders = SignInManager.GetExternalAuthenticationSchemes().ToList(); if (loginProviders.Count == 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 loginProviders) { }

} }
@section Scripts { @{ await Html.RenderPartialAsync("_ValidationScriptsPartial"); } }