itsm_ysm/src/main/webapp/temp/grid_dropzone.html
2021-09-17 10:09:17 +09:00

35 lines
1.1 KiB
HTML

<html>
<!--
http://localhost:8080/nlib/fileupload/js/dropzone.css
-->
<meta charset="utf-8">
<link rel="stylesheet" href="/nlib/js/fileupload/dropzone.css" />
<link rel="stylesheet" href="/nlib/js/fileupload/style.css" />
<script src="/nlib/js/fileupload/dropzone.js"></script>
<!--
<link rel="stylesheet" href="https://www.dropzonejs.com/css/dropzone.css?v=1595510599" />
<link rel="stylesheet" href="https://www.dropzonejs.com/css/style.css?v=1595510599" />
<script src="https://www.dropzonejs.com/js/dropzone.js?v=1595510599"></script>
-->
<body>
<div id="dropzone">
<form action="${pageContext.request.contextPath}/fileupload/uploadFile.do"
class="dropzone needsclick" id="myDropzone">
<div class="dz-message needsclick">
<button type="button" class="dz-button">Drop files here or click to select files.</button><br />
<span class="note needsclick">이곳에 파일을 끌어다 놓거나, 클릭하여 올릴 파일을 선택하세요.</span>
</div>
</form>
</div>
</body>
</html>