delete_file.html 720 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html lang="zh-cn">
  3. <div>
  4. <form method="post" action=".">
  5. {% csrf_token %}
  6. <div>
  7. <label for="username">用户名</label>
  8. <input type="text" id="username" name="username">
  9. </div>
  10. <div>
  11. <label for="token">token</label>
  12. <input type="text" id="token" name="token">
  13. </div>
  14. <!-- 昵称 -->
  15. <div>
  16. <label for="file_id">file_id</label>
  17. <input type="text" id="file_id" name="file_id">
  18. </div>
  19. <!-- 提交按钮 -->
  20. <button type="submit">提交</button>
  21. </form>
  22. </div>
  23. </html>