create_group.html 719 B

1234567891011121314151617181920212223
  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_name">群名</label>
  14. <input type="text" id="group_name" name="group_name">
  15. </div>
  16. <div>
  17. <label for="token">token</label>
  18. <input type="text" id="token" name="token">
  19. </div>
  20. <button type="submit">提交</button>
  21. </form>
  22. </div>
  23. </html>