download_file.html 424 B

12345678910111213141516
  1. <!DOCTYPE html>
  2. <html lang="zh-cn">
  3. <div>
  4. <form method="post" action=".">
  5. {% csrf_token %}
  6. <!-- 昵称 -->
  7. <div>
  8. <label for="file_path">file_path</label>
  9. <input type="text" id="file_path" name="file_path">
  10. </div>
  11. <!-- 提交按钮 -->
  12. <button type="submit">提交</button>
  13. </form>
  14. </div>
  15. </html>