@model RegistrationForm.Models.Employ_Table @{ ViewBag.Title = "Index"; Layout = null; } 회원가입 @using (Html.BeginForm()) { @Html.AntiForgeryToken()

회원가입 페이지 입니다.


@Html.ValidationSummary(true, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.Name, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.Name, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.Name, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.EmployNum, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.EmployNum, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.EmployNum, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.Password, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.Password, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.Password, "", new { @class = "text-danger" })
}
@Html.ActionLink("Back to List", "Main")
@section Scripts { @Scripts.Render("~/bundles/jqueryval") }