| 1234567891011121314151617181920 |
- <!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="password">密码</label>
- <input type="password" id="password" name="password">
- </div>
- <!-- 提交按钮 -->
- <button type="submit">提交</button>
- </form>
- </div>
- </html>
|