@model MVCUI.Models.TeamMVCModel @{ ViewBag.Title = "Create"; }

Create New Team

@using (Html.BeginForm()) { @Html.AntiForgeryToken()

TeamModel


@Html.ValidationSummary(true, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.TeamName, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.TeamName, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.TeamName, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.TeamMembers,htmlAttributes:new { @class = "control-label col-md-2"})
@foreach (var item in Model.TeamMembers) {
}
}
@Html.ActionLink("Back to List", "Index")
@section Scripts { @Scripts.Render("~/bundles/jqueryval") }