Files
MileageTraker/Web/Views/Account/Manage.cshtml
T
2013-01-12 14:58:33 -05:00

19 lines
463 B
Plaintext

@model MileageTraker.Web.ViewModels.Account.ChangePasswordViewModel
@{
ViewBag.Title = "Manage Account";
}
<h2 class="center-content">@ViewBag.Title</h2>
@Html.Partial("_StatusMessage")
<div class="center-content well">
<p>You're logged in as <strong>@User.Identity.Name</strong>.
Your name is <strong>@Model.FullName</strong> and
email is <strong>@Model.Email</strong>.
</p>
@Html.Partial("_ChangePasswordPartial")
</div>