19 lines
502 B
Plaintext
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> |