/member/login.html
페이지 정보

본문
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
layout:decorate="~{include/layout.html}">
<body>
<div layout:fragment="content">
<br>
<center th:if="${param.logout != null}">
logout......
</center>
<center th:if="${param.logout == null}">
<h1>LOGIN</h1>
<form method="post">
<table width="400" border="1">
<tr>
<th width="100">아이디</th>
<td><input name="username" style="width:99%;"></td>
</tr>
<tr>
<th>비밀번호</th>
<td><input name="password" style="width:99%;"></td>
</tr>
<tr>
<th></th>
<td><button class="submitBtn">로그인</button></td>
</tr>
</table>
</form>
<br>
</div>
<th:block layout:fragment="script">
<script th:inline="javascript">
</script>
</th:block>
</body>
</html>
- 이전글MemberController 24.07.19
- 다음글/member/login?logout ( 테스트 ) 24.07.19
댓글목록
등록된 댓글이 없습니다.
