...
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user