@using Microsoft.AspNet.Http.Authentication @using Yavsc.ViewModels.Account @model SignInViewModel @{ 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?"]

@Html.AntiForgeryToken()

@SR["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()
} }