| 12345678910111213141516171819 |
- <!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="token">token</label>
- <input type="text" id="token" name="token">
- </div>
- <!-- 提交按钮 -->
- <button type="submit">提交</button>
- </form>
- </div>
- </html>
|