12345678910111213141516171819202122232425 |
- <html>
- <head>
- <meta charset="UTF-8"/>
- <title>login</title>
- </head>
- <body>
- <form action="/front/dologin" accept-charset="utf-8" method="post">
- <div>
- <label>用户名</label>
- <input type="text" class="text" id="username"
- placeholder="用户名" name="username" />
- </div>
- <div>
- <label>密 码</label>
- <input type="password" class="text" id="password"
- placeholder="密码" name="password"/>
- </div>
- <div>
- <span>没有账号?去<a href="/front/register">注册</a></span>
- <button type="reset" value="重置" id="reset">重置</button>
- <button type="submit" value="登录" id="login">登录</button>
- </div>
- </form>
- </body>
- </html>
|