|
|
|
@ -69,9 +69,11 @@
|
|
|
|
|
<span class="input-group-text cursor-pointer"><i class="bx bxs-lock"></i></span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="input_wrap2">
|
|
|
|
|
<!--
|
|
|
|
|
<a href="#" onclick="javascript:fn_FindId(); return false;">아이디 찾기</a>
|
|
|
|
|
<a href="#" onclick="javascript:fn_FindPw(); return false;" class="line">비밀번호 찾기</a>
|
|
|
|
|
<a href="#" onclick="javascript:fnReg(); return false;" class="line">회원가입</a>
|
|
|
|
|
-->
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<input type="hidden" name="message" value="${message}" />
|
|
|
|
@ -133,21 +135,21 @@ $(function(){
|
|
|
|
|
* 회원가입 팝업
|
|
|
|
|
*/
|
|
|
|
|
function fnReg(){
|
|
|
|
|
CmmPopup.open("<c:url value='/framework/biz/mng/usr/addUserPopup.do'/>", {}, {width: 1100, height:570}, '사용자 등록');
|
|
|
|
|
window.open(".do", "regAccount", {width: 1100, height:570});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 아이디 찾기 팝업
|
|
|
|
|
*/
|
|
|
|
|
function fn_FindId(){
|
|
|
|
|
CmmPopup.open("<c:url value='/login/findIdPopup/input.do'/>", {}, {width: 500, height:300}, '아이디 찾기');
|
|
|
|
|
window.open(".do", "findId", {width: 500, height:300});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 비밀번호 찾기 팝업
|
|
|
|
|
*/
|
|
|
|
|
function fn_FindPw(){
|
|
|
|
|
CmmPopup.open("<c:url value='/login/findPwdPopup/input.do'/>", {}, {width: 500, height:330}, '비밀번호 찾기');
|
|
|
|
|
window.open(".do", "findPw", {width: 500, height:330});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|