Skip to content

Commit

Permalink
회원조회용 html 파일
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoochanhong committed Mar 20, 2023
1 parent 4cb481e commit 51487d4
Showing 1 changed file with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!doctype html>
<html xmlns:th="http://www.thymeleaf.org">
<body>
<div class="container">
<div>
<table>
<thead>
<tr>
<th>#</th>
<th>이름</th>
</tr>
</thead>
<tbody>
<tr th:each="member : ${members}">
<td th:text="${member.id}"></td>
<td th:text="${member.name}"></td>
</tr>
</tbody>
</table>
</div>

</div>
</body>
</html>

0 comments on commit 51487d4

Please sign in to comment.