getPassword.html 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.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 href="{{rootUrl}}global/css/globalLayout.css" rel="stylesheet" type="text/css" />
  7. <script src="{{rootUrl}}global/js/jquery-1.7.2.min.js"></script>
  8. <script src="{{rootUrl}}global/js/jquery.validate.js"></script>
  9. <script src="{{rootUrl}}global/js/global.js"></script>
  10. <script type="text/javascript">
  11. $(function(){
  12. $("#getpasswd").validate({
  13. rules: {
  14. email: {
  15. required: true
  16. }
  17. },
  18. messages: {
  19. email:{
  20. required:"请输入您的注册账户"
  21. }
  22. },
  23. errorElement: "span",// 错误信息容器标签
  24. errorClass: "erroT",
  25. validClass: "inputSus",
  26. onkeyup: false
  27. });
  28. });
  29. </script>
  30. </head>
  31. <body>
  32. <div class="warpBody">
  33. <div class="header">
  34. <a href="{{rootUrl}}" title="返回首页" class="logoLink"><div class="logo"></div></a>
  35. </div>
  36. <div class="formItem">
  37. <div class="formBgTop"><div><dl><dd></dl></dd></div></div>
  38. <div class="formBgMiddle clearfix">
  39. <h2>找回密码</h2>
  40. <dl class="regForm">
  41. <dt>通行证账户/注册邮箱</dt>
  42. <form method="post" name="getpasswd" id="getpasswd" >
  43. <dd><input id="email" style="width: 420px" name="email" class="inputText"><span class="erroT">{{messages}}</span><p class="tips">系统将会发送一份邮件至该账户注册时所填写的邮箱,请注意查收!</p></dd>
  44. <dd class="clearfix"><br><br><input type="submit" name="emailsubmit" class="button btn-orange " value="发送找回密码邮件"></dd>
  45. </form>
  46. </dl>
  47. </div>
  48. <div class="formBgBottom"></div>
  49. </div>
  50. <div class="footer">
  51. Copyright@<a href="http://smartcost.com.cn" target="_blank">珠海纵横创新软件有限公司</a> all rights reserved
  52. </div>
  53. </div>
  54. </body>
  55. </html>