| 12345678910111213141516171819202122232425 |
- <!DOCTYPE html>
- <html lang="zh-cn">
- <div>
- <form method="post" action=".">
- {% csrf_token %}
- <!-- 昵称 -->
- <div>
- <label for="username">名称</label>
- <input type="text" id="username" name="username">
- </div>
- <!-- 群号 -->
- <div>
- <label for="group_id">群号</label>
- <input type="text" id="group_id" name="group_id">
- </div>
- <div>
- <label for="token">token</label>
- <input type="text" id="token" name="token">
- </div>
- <!-- 提交按钮 -->
- <button type="submit">提交</button>
- </form>
- </div>
- </html>
|