@using MusicStore.Models;
@using Microsoft.AspNet.Identity;
@{
//Bug: Need a way to specify the layout page in a single place
Layout = "/Views/Shared/_Layout.cshtml";
ViewBag.Title = "Manage Account";
}
@ViewBag.Title.
@ViewBag.StatusMessage
@if (ViewBag.HasLocalPassword)
{
@Html.Partial("_ChangePasswordPartial")
}
else
{
@Html.Partial("_SetPasswordPartial")
}
@Html.Action("RemoveAccountList")
@Html.Partial("_ExternalLoginsListPartial", new { Action = "LinkLogin", ReturnUrl = ViewBag.ReturnUrl })
@section Scripts {
@Scripts.Render("~/bundles/jqueryval")
}