image.png

아이디 확인결과 checkId.JSP

<body>
<div id="checkId">
<h2>아이디 확인 결과</h2>
    <c:choose>
        <c:when test="${not empty id}">
            <p>회원님의 아이디는 <strong>${id}</strong> 입니다.</p>
        </c:when>
        <c:otherwise>
            <p><strong>일치하는 회원정보가 없습니다.</strong></p>
        </c:otherwise>
    </c:choose>

    
<!-- 확인 버튼 -->
<form action="${contextPath}/member/loginForm.do" method="POST">
<button type="submit" id="btn">확인</button>
</div>
</body>