@model GASArabianERP.Models.UserViewModel
@{
ViewBag.Title = "Index";
Layout = "~/Views/Shared/_LoginLayout.cshtml";
}
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
}