Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@morsdyce
Created November 3, 2012 09:26
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/4006749 to your computer and use it in GitHub Desktop.
Save morsdyce/4006749 to your computer and use it in GitHub Desktop.
<viewdata model="RegisterModel" PasswordLength="int" />
<use master="" />
<content name="page-title">
Register
</content>
<content name="main-content">
<h2>Create a New Account</h2>
<p>
Use the form below to create a new account.
</p>
<p>
Passwords are required to be a minimum of ${ PasswordLength.ToString() } characters in length.
</p>
#using (Html.BeginForm())
#{
!{ Html.ValidationSummary(true, "Account creation was unsuccessful. Please correct the errors and try again.") }
<div>
<fieldset>
<legend>Account Information</legend>
<div class="editor-label">
${ Html.LabelFor(m => m.UserName) }
</div>
<div class="editor-field">
${ Html.TextBoxFor(m => m.UserName) }
!{ Html.ValidationMessageFor(m => m.UserName) }
</div>
<div class="editor-label">
${ Html.LabelFor(m => m.Email) }
</div>
<div class="editor-field">
${ Html.TextBoxFor(m => m.Email) }
!{ Html.ValidationMessageFor(m => m.Email) }
</div>
<div class="editor-label">
${ Html.LabelFor(m => m.Password) }
</div>
<div class="editor-field">
${ Html.PasswordFor(m => m.Password) }
!{ Html.ValidationMessageFor(m => m.Password) }
</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="Register" />
</p>
</fieldset>
</div>
#}
</content>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment