@using LMSWebApplication.Models @model LoginViewModel @{ Layout = null; } Login | GLF @**@

Login account!


@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" })
}