@model ManageLoginsViewModel @using Microsoft.AspNet.Http.Authentication @{ ViewData["Title"] = "Manage your external logins"; }

@ViewData["Title"].

@ViewData["StatusMessage"]

@if (Model.CurrentLogins.Count > 0) {

Registered Logins

@foreach (var account in Model.CurrentLogins) { }
@account.LoginProvider @account.ProviderDisplayName @if ((bool)ViewData["ShowRemoveButton"]) {
} else { @:   }
} @if (Model.OtherLogins.Count > 0) {

Add another service to log in.


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

}