_login.html 744 B

12345678910111213141516171819202122232425
  1. <html>
  2. <head>
  3. <meta charset="UTF-8"/>
  4. <title>login</title>
  5. </head>
  6. <body>
  7. <form action="/front/dologin" accept-charset="utf-8" method="post">
  8. <div>
  9. <label>用户名</label>
  10. <input type="text" class="text" id="username"
  11. placeholder="用户名" name="username" />
  12. </div>
  13. <div>
  14. <label>密 码</label>
  15. <input type="password" class="text" id="password"
  16. placeholder="密码" name="password"/>
  17. </div>
  18. <div>
  19. <span>没有账号?去<a href="/front/register">注册</a></span>
  20. <button type="reset" value="重置" id="reset">重置</button>
  21. <button type="submit" value="登录" id="login">登录</button>
  22. </div>
  23. </form>
  24. </body>
  25. </html>