upload.tpl 831 B

12345678910111213141516171819202122232425262728
  1. <!-- 업로드 -->
  2. % rebase('base.tpl')
  3. <div id="tool">
  4. <nav class="menu">
  5. <a class="menu-item selected" href="#" onclick="return false">
  6. {{title}}
  7. </a>
  8. <a class="menu-item" href="javascript:history.back(-1);">뒤로</a>
  9. </nav>
  10. </div>
  11. <h1 class="title">
  12. {{title}}
  13. </h1>
  14. <div>
  15. <form action="/upload" method="POST" enctype="multipart/form-data">
  16. <input type="file" name="file">
  17. <br>
  18. <br>
  19. 파일명 : <input type="text" name="data">
  20. <br>
  21. <br>
  22. 라이선스 : <input type="text" name="lice">
  23. <br>
  24. <br>
  25. <button class="btn btn-primary" type="submit">업로드</button>
  26. </form>
  27. </div>
  28. <span>{{number}}MB 이하 파일만 업로드 가능하고 확장자는 jpg, png, gif, jpeg만 가능합니다.</span>