@model GASArabianERP.Models.UserViewModel @{ ViewBag.Title = "Index"; Layout = "~/Views/Shared/_LoginLayout.cshtml"; } @using (Html.BeginForm("Login", "User", FormMethod.Post, new { })) { @Html.AntiForgeryToken()

Sign in to start FSD application

@Html.EditorFor(model => model.UserName, new { htmlAttributes = new { @class = "form-control", @placeholder = "User Name", @autocomplete = "off" } }) @Html.ValidationMessageFor(m => m.UserName, "", new { @class = "text-danger" })
@Html.PasswordFor(model => model.Password, new { @class = "form-control", @autocomplete = "off", @placeholder = "Password" }) @Html.ValidationMessageFor(m => m.Password, "", new { @class = "text-danger" })

I forgot my password
}