Files
MileageTraker/Web/Views/Account/Manage.cshtml
T
2015-10-22 09:05:42 -04:00

19 lines
502 B
Plaintext

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