| 1234567891011121314151617181920 |
- <!DOCTYPE html>
- <html lang="zh-cn">
- <div>
- <form method="post" action=".">
- {% csrf_token %}
- <!-- 文件夹名 -->
- <div>
- <label for="folder_name">文件夹名</label>
- <input type="text" id="folder_name" name="folder_name">
- </div>
- <!-- 父文件夹id -->
- <div>
- <label for="father_folder_id">父文件夹id</label>
- <input type="text" id="father_folder_id" name="father_folder_id">
- </div>
- <!-- 提交按钮 -->
- <button type="submit">提交</button>
- </form>
- </div>
- </html>
|