27 lines
965 B
HTML
Raw Normal View History

2024-10-07 16:14:03 +09:00
<!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}">
2024-10-21 17:25:49 +09:00
<head>
2024-10-07 16:14:03 +09:00
<title>Spring Boot</title>
2024-10-25 18:28:25 +09:00
2024-10-07 16:14:03 +09:00
<script type="text/javascript" th:src="@{/js/user.js}"></script>
2024-10-21 17:25:49 +09:00
</head>>
2024-10-07 16:14:03 +09:00
<body onload="checkDebug()">
2024-10-10 17:37:22 +09:00
<th:block layout:fragment="header" th:include="@{fragments/header}"></th:block>
2024-10-07 16:14:03 +09:00
2024-10-21 17:25:49 +09:00
<div layout:fragment="content" id="content">
2024-10-07 16:14:03 +09:00
<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>
2024-10-25 18:28:25 +09:00
<tr><td><input type="submit" value="로그인" class="btn" th:onclick="onclickLogin([[${enc}]],[[${key}]])"></td></tr>
2024-10-07 16:14:03 +09:00
</table>
</div>
2024-10-10 17:37:22 +09:00
<th:block layout:fragment="footer" th:include="@{fragments/footer}"></th:block>
2024-10-07 16:14:03 +09:00
</body>
</html>