mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-29 13:02:05 +03:00
Added tag tag1 for changeset 4c285537b335
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
@model MyFriendsAround.Web.Models.ChangePasswordModel
|
||||
|
||||
@{
|
||||
ViewBag.Title = "Change Password";
|
||||
}
|
||||
|
||||
<h2>Change Password</h2>
|
||||
<p>
|
||||
Use the form below to change your password.
|
||||
</p>
|
||||
<p>
|
||||
New passwords are required to be a minimum of @ViewBag.PasswordLength characters in length.
|
||||
</p>
|
||||
|
||||
<script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script>
|
||||
<script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>
|
||||
|
||||
@using (Html.BeginForm()) {
|
||||
@Html.ValidationSummary(true, "Password change was unsuccessful. Please correct the errors and try again.")
|
||||
<div>
|
||||
<fieldset>
|
||||
<legend>Account Information</legend>
|
||||
|
||||
<div class="editor-label">
|
||||
@Html.LabelFor(m => m.OldPassword)
|
||||
</div>
|
||||
<div class="editor-field">
|
||||
@Html.PasswordFor(m => m.OldPassword)
|
||||
@Html.ValidationMessageFor(m => m.OldPassword)
|
||||
</div>
|
||||
|
||||
<div class="editor-label">
|
||||
@Html.LabelFor(m => m.NewPassword)
|
||||
</div>
|
||||
<div class="editor-field">
|
||||
@Html.PasswordFor(m => m.NewPassword)
|
||||
@Html.ValidationMessageFor(m => m.NewPassword)
|
||||
</div>
|
||||
|
||||
<div class="editor-label">
|
||||
@Html.LabelFor(m => m.ConfirmPassword)
|
||||
</div>
|
||||
<div class="editor-field">
|
||||
@Html.PasswordFor(m => m.ConfirmPassword)
|
||||
@Html.ValidationMessageFor(m => m.ConfirmPassword)
|
||||
</div>
|
||||
|
||||
<p>
|
||||
<input type="submit" value="Change Password" />
|
||||
</p>
|
||||
</fieldset>
|
||||
</div>
|
||||
}
|
||||
Reference in New Issue
Block a user