@model ManageLoginsViewModel @{ ViewBag.Title = "Manage your external logins"; }

@ViewBag.Title.

@ViewBag.StatusMessage

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

Registered Logins

@foreach (var account in Model.CurrentLogins) { }
@account.LoginProvider @if (ViewBag.ShowRemoveButton) {
} else { @:   }
} @if (Model.OtherLogins.Any()) {

Add another service to log in.


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

}