@model HeuristicLab.Services.Optimization.Web.Models.LogOnModel @{ ViewBag.Title = "Log On"; }

Log On

Please enter your user name and password. @Html.ActionLink("Register", "Register") if you don't have an account.

@Html.ValidationSummary(true, "Login was unsuccessful. Please correct the errors and try again.") @using (Html.BeginForm("LogOn", "Account", new { ReturnUrl = Request.QueryString["ReturnUrl"] }, FormMethod.Post, new { @class ="hl-signon-form" })) {
Account Information
@Html.LabelFor(m => m.UserName)
@Html.TextBoxFor(m => m.UserName) @Html.ValidationMessageFor(m => m.UserName)
@Html.LabelFor(m => m.Password)
@Html.PasswordFor(m => m.Password) @Html.ValidationMessageFor(m => m.Password)
@Html.CheckBoxFor(m => m.RememberMe) @Html.LabelFor(m => m.RememberMe)

}