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