add_folder.html 662 B

1234567891011121314151617181920
  1. <!DOCTYPE html>
  2. <html lang="zh-cn">
  3. <div>
  4. <form method="post" action=".">
  5. {% csrf_token %}
  6. <!-- 文件夹名 -->
  7. <div>
  8. <label for="folder_name">文件夹名</label>
  9. <input type="text" id="folder_name" name="folder_name">
  10. </div>
  11. <!-- 父文件夹id -->
  12. <div>
  13. <label for="father_folder_id">父文件夹id</label>
  14. <input type="text" id="father_folder_id" name="father_folder_id">
  15. </div>
  16. <!-- 提交按钮 -->
  17. <button type="submit">提交</button>
  18. </form>
  19. </div>
  20. </html>