login.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>登录</title>
  6. <link rel="stylesheet" href="css/style.css" type="text/css" />
  7. <script type="application/javascript" src="js/jquery-1.7.min.js"></script>
  8. <script type="application/javascript" src="js/jquery.js"></script>
  9. </head>
  10. <body>
  11. <!--div conntent start-->
  12. <div class="content">
  13. <div class="contbox">
  14. <h2><span>考试录入系统登录</span></h2>
  15. <div class="loginbox">
  16. <form action="./login.action" method="post" onsubmit="return check();">
  17. <div class="user_name">
  18. <input name="user_name" id="user_name" type="text" onfocus="checkUser()" placeholder="请输入用户名"/>
  19. <label class="clearfix" for="user_name"><img src="images/001.png" /></label>
  20. <span id="checkUserName"></span>
  21. </div>
  22. <div class="user_post">
  23. <input name="user_post" id="user_post" type="text" onfocus="checkPwd()" onkeyup="ReplacePwd(this)" placeholder="请输入密码"/>
  24. <label class="clearfix" for="user_post"><img src="images/002.png" /></label>
  25. <span id="checkPassword"></span>
  26. </div>
  27. <div class="user_buttom">
  28. <button name="btnID" class="btnID" id="btnID" type="submit">点击登录</button>
  29. </div>
  30. <div class="user_forget"><a href="#">忘记密码!</a></div>
  31. </form>
  32. </div>
  33. </div>
  34. </div>
  35. <!--div conntent end-->
  36. </body>
  37. </html>