Skip to content

Instantly share code, notes, and snippets.

@morsdyce
Created November 3, 2012 09:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save morsdyce/4006730 to your computer and use it in GitHub Desktop.
Save morsdyce/4006730 to your computer and use it in GitHub Desktop.
<viewdata model="ChangePasswordModel" PasswordLength="int" />
<use master="" />
<content name="page-title">
Change Password
</content>
<content name="main-content">
<h2>Change Password</h2>
<p>
Use the form below to change your password.
</p>
<p>
New passwords are required to be a minimum of ${ PasswordLength.ToString() } characters in length.
</p>
#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>
#}
</content>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment