folder_list.html 381 B

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