관리자 : 아이디/비밀번호 찾기에 본인확인을 사용할 때 확인 안내창 추가
This commit is contained in:
@ -836,7 +836,6 @@ if ($config['cf_sms_use'] && $config['cf_icode_id'] && $config['cf_icode_pw']) {
|
|||||||
<?php echo option_selected("1", $config['cf_cert_use'], "테스트"); ?>
|
<?php echo option_selected("1", $config['cf_cert_use'], "테스트"); ?>
|
||||||
<?php echo option_selected("2", $config['cf_cert_use'], "실서비스"); ?>
|
<?php echo option_selected("2", $config['cf_cert_use'], "실서비스"); ?>
|
||||||
</select>
|
</select>
|
||||||
<!-- #TODO name 재확인 -->
|
|
||||||
<input type="checkbox" name="cf_cert_find" id="cf_cert_find"><label for="cf_cert_find">아이디/비밀번호 찾기에 사용하기</label>
|
<input type="checkbox" name="cf_cert_find" id="cf_cert_find"><label for="cf_cert_find">아이디/비밀번호 찾기에 사용하기</label>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@ -1412,6 +1411,14 @@ $(function(){
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$("#cf_cert_find").on("click", function() {
|
||||||
|
if($(this).attr("checked")) {
|
||||||
|
let flag = confirm("휴대폰/아이핀 본인확인을 이용하시다가 통합인증을 이용하시는 경우, 기존 회원은 아이디/비밀번호 찾기에 사용할 수 없을 수 있습니다.\n\n그래도 사용하시겠습니까?");
|
||||||
|
$(this).attr("checked", flag);
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
$("#cf_captcha").on("change", function(){
|
$("#cf_captcha").on("change", function(){
|
||||||
if ($(this).val() == 'recaptcha' || $(this).val() == 'recaptcha_inv') {
|
if ($(this).val() == 'recaptcha' || $(this).val() == 'recaptcha_inv') {
|
||||||
$("[class^='kcaptcha_']").hide();
|
$("[class^='kcaptcha_']").hide();
|
||||||
|
|||||||
Reference in New Issue
Block a user