delete_folder.html 563 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_id">id</label>
  9. <input type="text" id="folder_id" name="folder_id">
  10. </div>
  11. <div>
  12. <label for="token">token</label>
  13. <input type="text" id="token" name="token">
  14. </div>
  15. <!-- 提交按钮 -->
  16. <button type="submit">提交</button>
  17. </form>
  18. </div>
  19. </html>