@model IdentitySample.Models.IndexViewModel @{ //TODO: Until we have a way to specify the layout page at application level. Layout = "/Views/Shared/_Layout.cshtml"; ViewBag.Title = "Manage your account"; }

@ViewBag.Title.

@ViewBag.StatusMessage

@if (Model.HasPassword) { @Html.ActionLink("Change your password", "ChangePassword") } else { @Html.ActionLink("Pick a password", "SetPassword") }

Phone Number: @(Model.PhoneNumber ?? "None") [ @if (Model.PhoneNumber != null) { @Html.ActionLink("Change", "AddPhoneNumber") @:  |  @Html.ActionLink("Remove", "RemovePhoneNumber") } else { @Html.ActionLink("Add", "AddPhoneNumber") } ]

External Logins: @Model.Logins.Count @Html.ActionLink("[Manage]", "ManageLogins")

@if (Model.TwoFactor) {

Two factor is currently enabled:

} else {

Two factor is currently disabled:

} @if (Model.BrowserRemembered) {

Browser is curently remembered for two factor:

} else {

Browser is curently not remembered for two factor:

}