@model LMSWebApplication.Models.RegisterViewModel @{ Layout = null; } Sign Up | GLF @**@

Sign Up

@using (Html.BeginForm()) { @Html.AntiForgeryToken()
@Html.ValidationSummary(true, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.Email, htmlAttributes: new { @class = "control-label" }) @Html.EditorFor(model => model.Email, new { htmlAttributes = new { @class = "form-control", @required = "", autofocus = "" } }) @Html.ValidationMessageFor(model => model.Email, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.Password, htmlAttributes: new { @class = "control-label" }) @Html.EditorFor(model => model.Password, new { htmlAttributes = new { @class = "form-control", @required = "" } }) @Html.ValidationMessageFor(model => model.Password, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.ConfirmPassword, htmlAttributes: new { @class = "control-label" }) @Html.EditorFor(model => model.ConfirmPassword, new { htmlAttributes = new { @class = "form-control", @required = "" } }) @Html.ValidationMessageFor(model => model.ConfirmPassword, "", new { @class = "text-danger" })
Already have an account? Sign In
}