통합인증 : 기초 작업

- 정보찾기를 ID/PW 찾기 혹은 아이디/비밀번호 찾기로 용어 변경하고 현재창에 뜨도록
    - 본인인증을 이용한 아이디/비밀번호 재설정 페이지(only url) 추가
This commit is contained in:
whitedot
2021-08-30 11:13:28 +09:00
parent 007389b299
commit e333412be6
18 changed files with 25 additions and 68 deletions

View File

@ -30,7 +30,7 @@ add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">',
<label for="login_auto_login"><span></span> 자동로그인</label>
</div>
<div class="login_if_lpl">
<a href="<?php echo G5_BBS_URL ?>/password_lost.php" target="_blank" id="login_password_lost">정보찾기</a>
<a href="<?php echo G5_BBS_URL ?>/password_lost.php">ID/PW 찾기</a>
</div>
</div>
</fieldset>

View File

@ -7,7 +7,6 @@ add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">',
<!-- 회원정보 찾기 시작 { -->
<div id="find_info" class="new_win">
<h1 id="win_title">회원정보 찾기</h1>
<div class="new_win_con">
<form name="fpasswordlost" action="<?php echo $action_url ?>" onsubmit="return fpasswordlost_submit(this);" method="post" autocomplete="off">
<fieldset id="info_fs">
@ -20,8 +19,7 @@ add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">',
</fieldset>
<?php echo captcha_html(); ?>
<div class="win_btn">
<button type="submit" class="btn_submit">인</button>
<button type="button" onclick="window.close();" class="btn_close">창닫기</button>
<button type="submit" class="btn_submit">인증메일 보내기</button>
</div>
</form>
</div>
@ -34,15 +32,5 @@ function fpasswordlost_submit(f)
return true;
}
$(function() {
var sw = screen.width;
var sh = screen.height;
var cw = document.body.clientWidth;
var ch = document.body.clientHeight;
var top = sh / 2 - ch / 2 - 100;
var left = sw / 2 - cw / 2;
moveTo(left, top);
});
</script>
<!-- } 회원정보 찾기 끝 -->