728x90
EL+JSTL
백단과 연결되서 받을 수 있게 코드
기존 배우던 코드를 쭉 편하게 따라치면서 구조 분석하고 대강 틀만보고 안보고 치면서 세부코드 치는 연습
그리고 코딩 자체가 많이 익숙해지고 에너지 소모가 덜 되서 자연스러울 수 있게 하기 위한 목적으로
머리 안돌아갈 때마다 쭉 따라치면서 가볍게 많이 쳐야겠다
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<link rel="stylesheet" type="text/css" href="${ pageContext.servletContext.contextPath }"/resources/css/member-style.css">
<style>
#myInfoTable td{text-align: center;}
</style>
</head>
<body>
<c:import url="../common/menubar.jsp"/>
<h1 align="center">${loginUser.name }님의 정보 보기</h1>
<div class="centerText">>
<table border="" id="myInfoTable">
<tr>
<th>아이디</th>
<td>${loginUser.id }</td>
</tr>
<tr>
<th>이름</th>
<td>${loginUser.name</td>
</tr>
<tr>
<th>닉네임</th>
<td>${loginUser.nickName}</td>
</tr>
<tr>
<th>성별</th>
<c:if test="${loginUser.gender eq 'M'}">
<td>남성</td>
</c:if>
<c:if test="${loginUser.gender eq 'F'}">
<td>여성</td>
</c:if>
</tr>
<tr>
<th>나이</th>
<td>${loginUser.age}</td>
</tr>
<tr>
<th>이메일</th>
<td>${ loginUser.email}</td>
</tr>
<tr>
<th>전화번호</th>
<td>${loginUser.phone}</td>
</tr>
<tr>
<th>주소</th>
<td>
<c:forTokens var="addr" items="${loginUser.address}" delims="/" varStatus="status">
<c:if test="${status.index eq 0 && addr >= '0' && addr <= '99999'">
(${ addr})
</c:if>
<c:if test="${status.index eq 0 && !(addr >= '0' && addr <= '99999'">
${addr}
</c:if>
<c:if test="${status.index eq 1">
${addr}
</c:if>
<c:if test="${status.index eq 2">
${addr}
</c:if>
</c:forTokens>
</td>
</tr>
<tr>
<td colspan="2" aling="center">
<button type="button" onclick="location.href='mpwdUpdateView.me'">비밀번호 수정</button>
<button type="button" onclick="location.href='mupdateView.me'">정보 수정</button>
<button type="button" onclick="location.href='${m.delete}'">회원탈퇴</button>
<button type="button" onclick="location.href='home.do'">시작 페이지로</button>
</td>
</tr>
</table>
</div>
</body>
</html>
728x90
반응형
'small steps > 1일 1코딩 - 코딩을 내 몸처럼' 카테고리의 다른 글
[1일1코딩][Web] memberJoin.jsp (feat.ajax + 유효성검사) (0) | 2022.07.19 |
---|---|
[1일 1코딩][Web] menubar.jsp (feat. EL+JSTL) 2 (0) | 2022.07.18 |
[1일 1코딩][HTML-CSS] 게시판 숙련도 올리기 - table태그 방식 (0) | 2022.07.13 |
[1일 1코딩][GitBash] 브랜치 생성, 변경, 통합 등 (0) | 2022.07.12 |
[1일 1코딩][Web] memberJoin.jsp (feat. EL+JSTL+ajax) 2 (0) | 2022.07.11 |