add_folder.html 998 B

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