get_root_folder.html 569 B

12345678910111213141516171819
  1. <!DOCTYPE html>
  2. <html lang="zh-cn">
  3. <div>
  4. <form method="post" action=".">
  5. {% csrf_token %}
  6. <!-- 用户名 -->
  7. <div>
  8. <label for="username">用户名</label>
  9. <input type="text" id="username" name="username">
  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>