@model Yavsc.ViewModels.Account.LoginViewModel @{ ViewData["Title"] = SR["Log in"]; }

@ViewData["Title"]


Use a local account to log in

Register as a new user?

Forgot your password?

@Html.AntiForgeryToken()

Use another service to log in:

@if (Model.ExternalProviders?.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 description in Model.ExternalProviders) {
@Html.AntiForgeryToken()
} }