@model Fab2ApprovalSystem.Models.LoginModel @{ ViewBag.Title = "Mesa Approval System"; } @if (GlobalVars.DBConnection == "PROD") {

@ViewBag.Title (Production)

} else if (GlobalVars.DBConnection == "TEST") {

@ViewBag.Title - TEST ENVIRONMENT

} else {

@ViewBag.Title - QUALITY ENVIRONMENT

}
@using (Html.BeginForm("Login", "Account", new { ReturnUrl = ViewBag.ReturnUrl }, FormMethod.Post, new { @class = "form-horizontal", role = "form" })) { @Html.AntiForgeryToken()

Use your Windows Account to log in


@Html.ValidationSummary(true)
@Html.LabelFor(m => m.LoginID, new { @class = "col-md-2 control-label" })
@Html.TextBoxFor(m => m.LoginID, new { @class = "form-control", style = "width: 280px;" }) @Html.ValidationMessageFor(m => m.LoginID)
@Html.LabelFor(m => m.Password, new { @class = "col-md-2 control-label" })
@Html.PasswordFor(m => m.Password, new { @class = "form-control", style = "width: 280px;" }) @Html.ValidationMessageFor(m => m.Password)
@*
@Html.CheckBoxFor(m => m.RememberMe) @Html.LabelFor(m => m.RememberMe)
*@
@*

@Html.ActionLink("Register", "Register") if you don't have a local account.

*@ }
@*
@Html.Partial("_ExternalLoginsListPartial", new { Action = "ExternalLogin", ReturnUrl = ViewBag.ReturnUrl })
*@
@section Scripts { @Scripts.Render("~/bundles/jqueryval") }