|
|
@ -42,7 +42,7 @@
|
|
|
|
<form id="findPwForm">
|
|
|
|
<form id="findPwForm">
|
|
|
|
<input type="hidden" name="name" value="${xitLoginVO.name }"/>
|
|
|
|
<input type="hidden" name="name" value="${xitLoginVO.name }"/>
|
|
|
|
<input type="hidden" name="email" value="${xitLoginVO.email }"/>
|
|
|
|
<input type="hidden" name="email" value="${xitLoginVO.email }"/>
|
|
|
|
<input type="hidden" name="id" value="${userId }"/>
|
|
|
|
<input type="hidden" name="id" value="${userAcnt }"/>
|
|
|
|
<input type="hidden" name="userSe" value="${xitLoginVO.userSe }"/>
|
|
|
|
<input type="hidden" name="userSe" value="${xitLoginVO.userSe }"/>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="findArea">
|
|
|
|
<div class="findArea">
|
|
|
@ -53,11 +53,11 @@
|
|
|
|
<div class="bg">
|
|
|
|
<div class="bg">
|
|
|
|
<p class="result_msg">
|
|
|
|
<p class="result_msg">
|
|
|
|
<c:choose>
|
|
|
|
<c:choose>
|
|
|
|
<c:when test="${userId eq null}">
|
|
|
|
<c:when test="${userAcnt eq null}">
|
|
|
|
아이디가 존재하지 않습니다.
|
|
|
|
아이디가 존재하지 않습니다.
|
|
|
|
</c:when>
|
|
|
|
</c:when>
|
|
|
|
<c:otherwise>
|
|
|
|
<c:otherwise>
|
|
|
|
<c:out value="${xitLoginVO.name }"/>님의 아이디는 <span><c:out value="${userId }"/></span> 입니다.
|
|
|
|
<c:out value="${xitLoginVO.name }"/>님의 아이디는 <span><c:out value="${userAcnt }"/></span> 입니다.
|
|
|
|
</c:otherwise>
|
|
|
|
</c:otherwise>
|
|
|
|
</c:choose>
|
|
|
|
</c:choose>
|
|
|
|
</p>
|
|
|
|
</p>
|
|
|
@ -65,7 +65,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
<div class="container-window-btn1 text-center">
|
|
|
|
<div class="container-window-btn1 text-center">
|
|
|
|
<span>
|
|
|
|
<span>
|
|
|
|
<c:if test="${userId eq null}">
|
|
|
|
<c:if test="${userAcnt eq null}">
|
|
|
|
<a href="#" onclick="javascript:fn_FindId(); return false;" class="btn btn-blue">아이디 찾기</a>
|
|
|
|
<a href="#" onclick="javascript:fn_FindId(); return false;" class="btn btn-blue">아이디 찾기</a>
|
|
|
|
</c:if>
|
|
|
|
</c:if>
|
|
|
|
<a href="#" onclick="javascript:fn_FindPw(); return false;" class="btn btn-blue">비밀번호 찾기</a>
|
|
|
|
<a href="#" onclick="javascript:fn_FindPw(); return false;" class="btn btn-blue">비밀번호 찾기</a>
|
|
|
|