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

@ViewData["Title"].

@ViewData["StatusMessage"]

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

Registered Logins

@for (var index = 0; index < Model.CurrentLogins.Count; index++) { }
@Model.CurrentLogins[index].LoginProvider @if ((bool)ViewData["ShowRemoveButton"]) {
} else { @:   }
} @if (Model.OtherLogins.Count > 0) {

Add another service to log in.


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

}