| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html" charset="utf-8" />
- <title>纵横知道·通行证</title>
- <link href="{{rootUrl}}global/css/globalLayout.css" rel="stylesheet" type="text/css" />
- <script src="{{rootUrl}}global/js/jquery-1.7.2.min.js"></script>
- <script src="{{rootUrl}}global/js/jquery.validate.js"></script>
- <script src="{{rootUrl}}global/js/global.js"></script>
- <script type="text/javascript">
- $(function(){
- $("#getpasswd").validate({
- rules: {
- email: {
- required: true
- }
- },
- messages: {
- email:{
- required:"请输入您的注册账户"
- }
- },
- errorElement: "span",// 错误信息容器标签
- errorClass: "erroT",
- validClass: "inputSus",
- onkeyup: false
- });
- });
- </script>
- </head>
- <body>
- <div class="warpBody">
- <div class="header">
- <a href="{{rootUrl}}" title="返回首页" class="logoLink"><div class="logo"></div></a>
- </div>
- <div class="formItem">
- <div class="formBgTop"><div><dl><dd></dl></dd></div></div>
- <div class="formBgMiddle clearfix">
- <h2>找回密码</h2>
- <dl class="regForm">
- <dt>通行证账户/注册邮箱</dt>
- <form method="post" name="getpasswd" id="getpasswd" >
- <dd><input id="email" style="width: 420px" name="email" class="inputText"><span class="erroT">{{messages}}</span><p class="tips">系统将会发送一份邮件至该账户注册时所填写的邮箱,请注意查收!</p></dd>
- <dd class="clearfix"><br><br><input type="submit" name="emailsubmit" class="button btn-orange " value="发送找回密码邮件"></dd>
- </form>
- </dl>
- </div>
- <div class="formBgBottom"></div>
- </div>
- <div class="footer">
- Copyright@<a href="http://smartcost.com.cn" target="_blank">珠海纵横创新软件有限公司</a> all rights reserved
- </div>
- </div>
- </body>
- </html>
|