This commit is contained in:
2025-08-29 18:01:38 +09:00
parent 3a0a29ec02
commit 373964146c
9 changed files with 383 additions and 1 deletions
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html
xmlns:th="http://www.thymeleaf.org"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
xmlns:sec="http://www.thymeleaf.org/extras/spring-security"
layout:decorate="~{layout/default_layout}"
>
<th:block layout:fragment="head" id="head">
<script type="text/javascript" th:src="@{/js/upload.js}"></script>
<link th:href="@{/css/puzzle.css}" rel="stylesheet" />
<script th:inline="javascript">
</script>
<script type="text/javascript" th:src="@{/js/user.js}"></script>
</th:block >
<th:block layout:fragment="content">
<div id="puzzle-container">
</div>
<hr>
<h1>이미지로 네모로직 문제 만들기</h1>
<input type="file" id="imageUploader" accept="image/*">
<button id="createBtn">문제 생성</button>
<div id="status"></div>
<hr>
<h2>결과</h2>
<div id="result"></div>
</th:block>
</html>