@using OSS.Models @model LoginViewModel @{ ViewBag.Title = "login"; Layout = "~/Views/Shared/_LoginLayout.cshtml"; }
@using (Html.BeginForm("login", "Home", FormMethod.Post, new { id = "registration", @novalidate = "novalidate", @class = "needs-validation text-left" })) { @Html.AntiForgeryToken()
@ViewBag.Error
@ViewBag.Success
@Html.TextBoxFor(m => m.CompanyEmail, new { @class = "form-control", @id = "username", @placeholder = "Enter Email", @required = true, @type = "email" })
Please enter valid email
@Html.PasswordFor(m => m.Password, new { @class = "form-control", @id = "password", @placeholder = "Enter Password", @required = "true", @type = "password" })
Please enter password.
}