123456789101112131415161718192021222324252627 |
- <!DOCTYPE html>
- <html lang="zh-cn">
- <div>
- <form method="post" enctype="multipart/form-data" action=".">
- {% csrf_token %}
- <!-- 用户名 -->
- <div>
- <label for="username">用户名</label>
- <input type="text" id="username" name="username">
- </div>
- <!-- 昵称 -->
- <div>
- <label for="father_folder_id">father_folder_id</label>
- <input type="text" id="father_folder_id" name="father_folder_id">
- </div>
- <div>
- <input type="file" name="file">
- </div>
- <div>
- <label for="token">token</label>
- <input type="text" id="token" name="token">
- </div>
- <!-- 提交按钮 -->
- <button type="submit" class="btn btn-success btn-block">提交</button>
- </form>
- </div>
- </html>
|