| 12345678910111213141516171819202122232425 |
- <!-- login.html -->
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>Tornado聊天室</title>
- <style>
- .hint { color: red; font-size: 0.8em; }
- </style>
- </head>
- <body>
- <div>
- <div id="container">
- <h1>进入聊天室</h1>
- <hr>
- <p class="hint">{{hint}}</p>
- <form method="post" action="/login">
- <label>昵称:</label>
- <input type="text" placeholder="请输入你的昵称" name="nickname">
- <button type="submit">登录</button>
- </form>
- </div>
- </div>
- </body>
- </html>
|