|
|
@@ -138,8 +138,30 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<!-- //임시비밀번호 발급 -->
|
|
|
+ <div id="failCustId" class="find_result clear hide">
|
|
|
+ <div class="form_info">
|
|
|
+ <span class="ico_content_none"></span>
|
|
|
+ <p>입력한 정보와 일치하는 아이디가 존재하지 않습니다.</p>
|
|
|
+ <p class="t_info mt10">
|
|
|
+ 정확한 확인을 위해 휴대폰 인증/아이핀 인증을 통한<br>아이디 찾기를 진행해 주세요.
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+ <div class="btn_group_block btn_group_md ui_row">
|
|
|
+ <div class="ui_col_6">
|
|
|
+ <button type="button" class="btn btn_primary btn_block" onclick="cfnGoToPage(_PAGE_CUSTOMER_JOIN);">
|
|
|
+ <span>회원가입</span>
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ <div class="ui_col_6">
|
|
|
+ <button type="button" class="btn btn_dark btn_block" onclick="cfnGoToPage(_PAGE_CUSTOMER_PWD_FIND);">
|
|
|
+ <span>다시 찾기</span>
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <!-- //회원정보로 아이디찾기 실패일경우 -->
|
|
|
<!-- 비밀번호 찾기 결과안내 실패일경우 -->
|
|
|
- <div id="failAuthentication" class="find_result clear" style="display: none;">
|
|
|
+ <div id="failAuthentication" class="find_result clear hide">
|
|
|
<div class="form_info">
|
|
|
<span class="ico_content_none"></span>
|
|
|
<p>입력한 정보와 일치하는 정보가 존재하지 않습니다.</p>
|
|
|
@@ -235,7 +257,13 @@
|
|
|
var fnGetDisplayFail = function (authMethod) {
|
|
|
$('.form_head').hide();
|
|
|
$('.registration_nav').hide();
|
|
|
- $('#failAuthentication').show();
|
|
|
+ if (authMethod === 'custInfo') {
|
|
|
+ $('#failCustId').show();
|
|
|
+ }
|
|
|
+ if (authMethod === 'mobile' || authMethod === 'ipin') {
|
|
|
+ $('#failAuthentication').show();
|
|
|
+ }
|
|
|
+
|
|
|
};
|
|
|
|
|
|
// 나이스 본인인증 후 콜백
|