Skip to content

Instantly share code, notes, and snippets.

@morsdyce
Created November 3, 2012 09:25
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/4006744 to your computer and use it in GitHub Desktop.
Save morsdyce/4006744 to your computer and use it in GitHub Desktop.
<viewdata model="LogOnModel" />
<use master="" />
<content name="page-title">
Register
</content>
<content name="main-content">
<h2>Log On</h2>
<p>
Please enter your username and password. ${ Html.ActionLink("Register", "Register") } if you don't have an account.
</p>
#using (Html.BeginForm())
#{
!{ Html.ValidationSummary(true, "Login 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.Password) }
</div>
<div class="editor-field">
${ Html.PasswordFor(m => m.Password) }
!{ Html.ValidationMessageFor(m => m.Password) }
</div>
<div class="editor-label">
${ Html.CheckBoxFor(m => m.RememberMe) }
!{ Html.LabelFor(m => m.RememberMe) }
</div>
<p>
<input type="submit" value="Log On" />
</p>
</fieldset>
</div>
#}
</content>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment