"학습인증수단에 문구 추가
※ 인증수단 변경 시 추가 인증을 진행해야 합니다. ※ 추가 인증 후 하단의 [저장] 버튼을 클릭해야 변경이 완료됩니다." "정해진 학습인증수단이 없을 경우 (관리자 등록) 현재 인증 수단 : - 인증 변경 버튼 : 둘다 출력 "
This commit is contained in:
parent
8288a6a520
commit
df8be46927
|
|
@ -46,7 +46,9 @@
|
|||
$(opener.document).find("#mform").find("#ci").val("@(CI)");
|
||||
$(opener.document).find("#mform").find("#vssn").val("@(VSSN)");
|
||||
$(opener.document).find("#mform").find("#authPlatform_IPIN").show();
|
||||
$(opener.document).find("#mform").find("#authPlatform_Mobile").hide();
|
||||
$(opener.document).find("#mform").find("#authPlatform_IPIN").css("padding-bottom","0px");
|
||||
$(opener.document).find("#mform").find("#authPlatform_IPIN_Name").text("I-PIN 인증");
|
||||
$(opener.document).find("#mform").find("#authPlatform_Mobile").hide();
|
||||
alert("인증완료");
|
||||
} else {
|
||||
alert("입력한 정보와 일치하지 않습니다.\n 재인증해주세요.");
|
||||
|
|
|
|||
|
|
@ -58,6 +58,7 @@
|
|||
$(opener.document).find("#mform").find("#authplatform").val("@(AuthPlatform.Mobile.GetHashCode())");
|
||||
$(opener.document).find("#mform").find("#authPlatform_IPIN").hide();
|
||||
$(opener.document).find("#mform").find("#authPlatform_Mobile").show();
|
||||
$(opener.document).find("#mform").find("#authPlatform_Mobile_Name").text("휴대폰 인증");
|
||||
$(opener.document).find("#mform").find("#birthday").val("@(RSLT_BIRTHDAY)");
|
||||
$(opener.document).find("#mform").find("#di").val("@(DI)");
|
||||
$(opener.document).find("#mform").find("#ci").val("@(CI)");
|
||||
|
|
|
|||
|
|
@ -85,24 +85,23 @@
|
|||
</td>
|
||||
</tr>
|
||||
|
||||
<tr id="authPlatform_IPIN" @(u.authplatform == AuthPlatform.Mobile ? "style=display:none;" : "")>
|
||||
<tr >
|
||||
<th>학습인증수단</th>
|
||||
<td>
|
||||
<div class="mdfyBirth">
|
||||
<p id="authPlatformName">I-PIN 인증</p>
|
||||
<a href="#" onclick="certok3reqview('MOBI', 'AuthPlatformChange');" style="width:150px;margin-right:5px;">휴대폰 인증으로 변경</a>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="authPlatform_Mobile" @(u.authplatform == AuthPlatform.IPIN ? "style=display:none;" : "") >
|
||||
<th>학습인증수단</th>
|
||||
<td>
|
||||
<div class="mdfyBirth">
|
||||
<p id="authPlatformName">휴대폰 인증</p>
|
||||
<div class="mdfyBirth" id="authPlatform_IPIN" @(u.authplatform == AuthPlatform.Mobile ? "style=display:none;" : "") @(u.authplatform == AuthPlatform.None ? "style=padding-bottom:5px;" : "")>
|
||||
<p id="authPlatform_IPIN_Name">@(u.authplatform == AuthPlatform.None ? "-" : "I-PIN 인증")</p>
|
||||
<a href="#" onclick="certok3reqview('MOBI', 'AuthPlatformChange');" style="width:150px;">휴대폰 인증으로 변경</a>
|
||||
</div>
|
||||
<div class="mdfyBirth" id="authPlatform_Mobile" @(u.authplatform == AuthPlatform.IPIN ? "style=display:none;" : "")>
|
||||
<p id="authPlatform_Mobile_Name">@(u.authplatform == AuthPlatform.None ? "-" : "휴대폰 인증")</p>
|
||||
<a href="#" onclick="certok3reqview('IPIN', 'AuthPlatformChange');" style="width:150px;">I-PIN 인증으로 변경</a>
|
||||
</div>
|
||||
<br />
|
||||
※ 인증수단 변경 시 추가 인증을 진행해야 합니다.
|
||||
<br />
|
||||
※ 추가 인증 후 하단의 [저장] 버튼을 클릭해야 변경이 완료됩니다.
|
||||
</td>
|
||||
</tr>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>연락처</th>
|
||||
<td>
|
||||
|
|
|
|||
Loading…
Reference in New Issue