create_group.html 573 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. <!-- 群名 -->
  12. <div>
  13. <label for="group_name">昵称</label>
  14. <input type="text" id="group_name" name="group_name">
  15. </div>
  16. <button type="submit">提交</button>
  17. </form>
  18. </div>
  19. </html>