add_group.html 748 B

12345678910111213141516171819202122232425
  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. <!-- 群号 -->
  12. <div>
  13. <label for="group_id">群号</label>
  14. <input type="text" id="group_id" name="group_id">
  15. </div>
  16. <div>
  17. <label for="token">token</label>
  18. <input type="text" id="token" name="token">
  19. </div>
  20. <!-- 提交按钮 -->
  21. <button type="submit">提交</button>
  22. </form>
  23. </div>
  24. </html>