YNICTE/FO/Views/Course/CertPayReturn.cshtml

62 lines
1.6 KiB
Plaintext
Raw Permalink Normal View History

2020-10-12 14:39:23 +09:00
@model NP.Model.Lect
<div class="lcnSccss">
<h5><span>자격증과정 신청 접수가 </span><span>완료되었습니다.</span></h5>
<p><span>경력심사는 접수기간이 끝난 이후 진행되며, 경력심사결과 대상자 통보는 개별로 진행될 예정입니다.</span><span>대상자로 선정되신 이후에는 교육비 결제를 완료해야 최종 등록이 완료됩니다.</span></p>
</div>
<h4 class="clsTitle">강좌정보</h4>
<ul class="clsList">
<li>
<h5><span class="mt3">@Model.cshapename</span> <em>@Model.certgradeccname</em> @Model.cname</h5>
<p>( @Model.rsrename )</p>
</li>
</ul>
<h4 class="clsTitle">신청자정보</h4>
<form action="">
<table class="clsTable">
<tbody>
<tr>
<th>이름</th>
<td><p>@Model.username</p></td>
</tr>
<tr>
<th>이메일<span>*</span></th>
<td><p>@Model.email</p></td>
</tr>
<tr>
<th>휴대폰 번호<span>*</span></th>
<td><p>@Model.mobile</p></td>
</tr>
<tr>
<th>회사번호</th>
<td><p>@Model.telno</p></td>
</tr>
<tr>
<th>직장</th>
<td><p>@Model.asname</p></td>
</tr>
<tr>
<th>부서</th>
<td><p>@Model.depart</p></td>
</tr>
<tr>
<th>직위</th>
<td><p>@Model.ccpositionname</p></td>
</tr>
<tr>
<th>경력증명서</th>
<td><p>@(Model.fgno == null?"미첨부":"첨부완료")</p></td>
</tr>
</tbody>
</table>
</form>
<ul class="clsBtn solo">
<li><a href="/Course/Certs">확인</a></li>
</ul>
@section scripts{
<script>
$(document).ready(function () {
});
</script>
}