13 lines
305 B
Plaintext
13 lines
305 B
Plaintext
@model MileageTraker.Web.ViewModels.Account.ChangePasswordViewModel
|
|
@{
|
|
ViewBag.Title = "Manage Account";
|
|
}
|
|
|
|
<h2>@ViewBag.Title</h2>
|
|
|
|
<p class="label label-success">@ViewBag.StatusMessage</p>
|
|
|
|
<p>You're logged in as <strong>@User.Identity.Name</strong>.</p>
|
|
|
|
@Html.Partial("_ChangePasswordPartial")
|