| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>登录</title>
- <link rel="stylesheet" href="css/style.css" type="text/css" />
- <script type="application/javascript" src="js/jquery-1.7.min.js"></script>
- <script type="application/javascript" src="js/jquery.js"></script>
- </head>
- <body>
- <!--div conntent start-->
- <div class="content">
- <div class="contbox">
- <h2><span>考试录入系统登录</span></h2>
- <div class="loginbox">
- <form action="./login.action" method="post" onsubmit="return check();">
- <div class="user_name">
- <input name="user_name" id="user_name" type="text" onfocus="checkUser()" placeholder="请输入用户名"/>
- <label class="clearfix" for="user_name"><img src="images/001.png" /></label>
- <span id="checkUserName"></span>
- </div>
- <div class="user_post">
- <input name="user_post" id="user_post" type="text" onfocus="checkPwd()" onkeyup="ReplacePwd(this)" placeholder="请输入密码"/>
- <label class="clearfix" for="user_post"><img src="images/002.png" /></label>
- <span id="checkPassword"></span>
- </div>
- <div class="user_buttom">
- <button name="btnID" class="btnID" id="btnID" type="submit">点击登录</button>
- </div>
- <div class="user_forget"><a href="#">忘记密码!</a></div>
- </form>
- </div>
- </div>
- </div>
- <!--div conntent end-->
- </body>
- </html>
|