Set password operational
Sitewide plan for status messages
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
@model MileageTraker.Web.ViewModels.User.SetPasswordViewModel
|
||||
@{
|
||||
ViewBag.Title = "Change Password";
|
||||
}
|
||||
|
||||
<h2 class="center-content">@ViewBag.Title</h2>
|
||||
|
||||
@using (Html.BeginForm("SetPassword", "User", FormMethod.Post, new { @class = "form-horizontal well center-content" }))
|
||||
{
|
||||
@Html.Partial("_ValidationSummary")
|
||||
@Html.AntiForgeryToken()
|
||||
<fieldset>
|
||||
<legend>Set password for @Model.Username</legend>
|
||||
@Html.EditorForModel()
|
||||
<div class="form-actions">
|
||||
<input type="submit" value="Change password" class="btn btn-primary" />
|
||||
</div>
|
||||
</fieldset>
|
||||
}
|
||||
Reference in New Issue
Block a user