@model SportsStore.WebUI.Models.LoginViewModel @{ ViewBag.Title = "Admin: Log in"; Layout = "~/Views/Shared/_AdminLayout.cshtml"; }

Log in

Please log in to access the administration area:

@using (Html.BeginForm()) { @Html.ValidationSummary()
@Html.TextBoxFor(m => m.UserName, new { @class = "form-control"})
@Html.PasswordFor(m => m.Password, new { @class = "form-control"})
}