34 lines
1.2 KiB
HTML
34 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml"
|
|
xmlns:th="http://www.thymeleaf.org"
|
|
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
|
layout:decorate="~{layout/default_layout}">
|
|
|
|
<th:block layout:fragment="head">
|
|
<title>Spring Boot</title>
|
|
<script th:inline="javascript">
|
|
function loginClick() {
|
|
onclickLogin([[${enc}]],[[${key}]])
|
|
}
|
|
</script>
|
|
<!--/* css */-->
|
|
<link th:href="@{/css/common.css}" rel="stylesheet" />
|
|
<script type="text/javascript" th:src="@{/js/common.js}"></script>
|
|
<script type="text/javascript" th:src="@{/js/user.js}"></script>
|
|
</th:block>
|
|
<body onload="checkDebug()">
|
|
<th:block layout:fragment="header" th:include="@{fragments/header}"></th:block>
|
|
|
|
<div layout:fragment="content" class="content">
|
|
<table>
|
|
<tr><td>아이디</td></tr>
|
|
<tr><td><input id="user_id" type="text" class="text"></td></tr>
|
|
<tr><td>비밀번호</td></tr>
|
|
<tr><td><input id="user_pw" type="password" class="text"></td></tr>
|
|
<tr><td><input type="submit" value="가입하기" class="btn" onclick="loginClick()"></td></tr>
|
|
</table>
|
|
</div>
|
|
|
|
<th:block layout:fragment="footer" th:include="@{fragments/footer}"></th:block>
|
|
</body>
|
|
</html> |