| 이름 |
@Html.TextBoxFor(x => x.User.username, new { @class = "apylpt" }) |
| 주민등록번호 |
- @Html.TextBoxFor(x => x.User.userpno1)
- -
- @Html.TextBoxFor(x => x.User.userpno2)
|
| 휴대전화 |
- @Html.TextBoxFor(x => x.User.mobile1)
- -
- @Html.TextBoxFor(x => x.User.mobile2)
- -
- @Html.TextBoxFor(x => x.User.mobile3)
|
| 이메일 |
- @Html.TextBoxFor(x => x.User.email1)
- @
- @Html.TextBoxFor(x => x.User.email2)
|
| 주소 |
-
@Html.TextBoxFor(x => x.User.post, new { @class = "postno", @style = "background-color:#ddd;", @readonly = true })
-
@Html.TextBoxFor(x => x.User.address1, new { @class = "postadr", @style = "background-color:#ddd;", @readonly = true, @placeholder = "주소입력" })
-
@Html.TextBoxFor(x => x.User.address2, new { @class = "postadrsub", @style = "background-color:#ddd;", @placeholder = "나머지 주소입력" })
-
우편번호검색
|
| 채용형태 |
-
@Html.RadioButtonFor(model => model.User.isassignuser, "1", new { @name = "recruit", @checked = "checked" })정규직
-
@Html.RadioButtonFor(model => model.User.isassignuser, "0", new { @name = "recruit" })비정규직
|
| 직위 |
@Html.TextBoxFor(x => x.User.uduty, new { @class = "apylpt"})
|
| 학력 |
-
@Html.RadioButtonFor(model => model.User.slevel, "0", new { @name = "eduGrade", @checked = "checked" })기타
-
@Html.RadioButtonFor(model => model.User.slevel, "1", new { @name = "eduGrade" })고졸
-
@Html.RadioButtonFor(model => model.User.slevel, "2", new { @name = "eduGrade" })학사
-
@Html.RadioButtonFor(model => model.User.slevel, "3", new { @name = "eduGrade" })석사
-
@Html.RadioButtonFor(model => model.User.slevel, "4", new { @name = "eduGrade" })박사
|