upload.tpl 873 B

12345678910111213141516171819202122232425
  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. <form id="usrform" action="/upload" method="POST" enctype="multipart/form-data">
  15. <input class="form-control input-sm" type="file" name="file"> <button class="btn btn-primary" type="submit">업로드</button>
  16. <br>
  17. <br>
  18. 파일명 : <input class="form-control input-sm" type="text" name="data">
  19. <br>
  20. <br>
  21. 라이선스 : <input class="form-control input-sm" type="text" name="lice">
  22. <br>
  23. <br>
  24. <span>{{number}}MB 이하 파일만 업로드 가능하고 확장자는 jpg, png, gif, jpeg만 가능합니다.</span>
  25. </form>