2024-10-10 17:37:22 +09:00
|
|
|
<!DOCTYPE html>
|
2024-10-21 17:25:49 +09:00
|
|
|
<html lagn="ko"
|
|
|
|
|
xmlns:th="http://www.thymeleaf.org"
|
|
|
|
|
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
2025-09-05 18:02:27 +09:00
|
|
|
xmlns:sec="http://www.thymeleaf.org/extras/spring-security"
|
2024-10-21 17:25:49 +09:00
|
|
|
xmlns="http://www.w3.org/1999/html">
|
2024-10-10 17:37:22 +09:00
|
|
|
<head>
|
2025-03-20 17:57:55 +09:00
|
|
|
<base th:href="@{/}" />
|
2024-10-23 10:07:45 +09:00
|
|
|
<th:block th:replace="~{fragments/includes :: includes}"></th:block>
|
|
|
|
|
<th:block th:replace="~{fragments/title :: title}"></th:block>
|
2024-10-10 17:37:22 +09:00
|
|
|
</head>
|
2025-03-11 17:44:21 +09:00
|
|
|
<body class="is-preload">
|
|
|
|
|
<div id="page-wrapper">
|
2025-09-05 18:02:27 +09:00
|
|
|
<th:block th:replace="~{fragments/header :: header}"></th:block>
|
2025-03-11 17:44:21 +09:00
|
|
|
<th:block layout:fragment="content"></th:block>
|
|
|
|
|
<div class="dim_layer">
|
|
|
|
|
<div class="dimBg"></div>
|
|
|
|
|
<th:block layout:fragment="popup_layer"></th:block>
|
2025-08-04 16:35:49 +09:00
|
|
|
|
2025-09-05 18:02:27 +09:00
|
|
|
<!-- 로그인 팝업 -->
|
|
|
|
|
<div id="loginPopup" class="pop_layer">
|
|
|
|
|
<div class="pop_container">
|
|
|
|
|
<div class="pop_conts">
|
|
|
|
|
<h2>로그인</h2>
|
|
|
|
|
<form id="loginFormElement">
|
|
|
|
|
<input type="text" th:data="${enc}" id="loginId" placeholder="아이디" required/>
|
|
|
|
|
<input type="password" th:data="${type}" id="loginPassword" placeholder="비밀번호" required/>
|
|
|
|
|
<input type="checkbox" id="rememberMe" class="custom-checkbox"/>
|
|
|
|
|
<label for="rememberMe" class="custom-label"></label>
|
|
|
|
|
<span>자동로그인</span>
|
|
|
|
|
<button type="submit" class="button">로그인</button>
|
|
|
|
|
</form>
|
|
|
|
|
<div class="btn_r">
|
|
|
|
|
<a href="#" class="btn_layerClose" onclick="closePopup()">닫기</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-03-21 17:15:55 +09:00
|
|
|
</div>
|
2025-09-05 18:02:27 +09:00
|
|
|
|
|
|
|
|
<!-- 회원가입 팝업 -->
|
|
|
|
|
<div id="signupPopup" class="pop_layer">
|
|
|
|
|
<div class="pop_container">
|
|
|
|
|
<div class="pop_conts">
|
|
|
|
|
<h2>회원가입</h2>
|
|
|
|
|
<input type="text" placeholder="아이디" required>
|
|
|
|
|
<input type="password" placeholder="비밀번호" required>
|
|
|
|
|
<input type="email" placeholder="이메일" required>
|
|
|
|
|
<button onclick="submitForm('signup')">가입하기</button>
|
|
|
|
|
<div class="btn_r">
|
|
|
|
|
<a href="#" class="btn_layerClose" onclick="closePopup()">닫기</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-03-21 17:15:55 +09:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-09-05 18:21:34 +09:00
|
|
|
<th:block layout:fragment="head"></th:block>
|
2025-09-05 18:02:27 +09:00
|
|
|
<th:block th:replace="~{fragments/footer :: footer}"></th:block>
|
2025-03-21 17:15:55 +09:00
|
|
|
</div>
|
2025-03-11 17:44:21 +09:00
|
|
|
<!-- Scripts -->
|
2025-09-05 18:02:27 +09:00
|
|
|
<script th:src="@{/js/jquery.min.js}"></script>
|
|
|
|
|
<script th:src="@{/js/jquery.dropotron.min.js}"></script>
|
|
|
|
|
<script th:src="@{/js/browser.min.js}"></script>
|
|
|
|
|
<script th:src="@{/js/breakpoints.min.js}"></script>
|
|
|
|
|
<script th:src="@{/js/util.js}"></script>
|
|
|
|
|
<script th:src="@{/js/main.js}"></script>
|
2024-10-10 17:37:22 +09:00
|
|
|
</body>
|
2024-10-05 19:42:29 +09:00
|
|
|
</html>
|