This commit is contained in:
lunaticbum
2024-10-21 17:25:49 +09:00
parent 2caf83af1e
commit c4001848fc
19 changed files with 214 additions and 143 deletions
@@ -4,7 +4,7 @@
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
layout:decorate="~{layout/default_layout}"
>
<head>
<th:block layout:fragment="head" id="head">
<!--css,JS 추가영역-->
<script th:inline="javascript">
function jopinClick() {
@@ -12,9 +12,9 @@
}
</script>
<script type="text/javascript" th:src="@{/js/user.js}"></script>
</head>
<div layout:fragment="content" id="content">
<table>
</th:block >
<th:block layout:fragment="content">
<table id="main_layer">
<tr>
<td><h2>회원가입</h2></td>
</tr>
@@ -30,5 +30,5 @@
<tr><td><input id="user_email" type="text" class="email"></td></tr>
<tr><td><input type="submit" value="가입하기" class="btn" onclick="jopinClick()"></td></tr>
</table>
</div>
</th:block>
</html>