portal html css js resource

pwdResult.html 2.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <title>科袖网-搭建企业与专家的桥梁</title>
  8. <link type="text/css" rel="stylesheet" href="css/bootstrap.min.css">
  9. <link type="text/css" rel="stylesheet" href="css/reset.css">
  10. <link type="text/css" rel="stylesheet" href="css/common.css">
  11. <link type="text/css" rel="stylesheet" href="css/genindex.css">
  12. <script type="text/javascript" src="js/jquery-1.11.1.js"></script>
  13. </head>
  14. <body class="covbodyBg">
  15. <div class="containerCon">
  16. <a href="index.html" class="headlogo signLogo"></a>
  17. </div>
  18. <!--中间-->
  19. <div id="container">
  20. <div class="containerCon contConP">
  21. <div class="covFrmblock">
  22. <form class="cmpAllFrm">
  23. <p class="h1Font alignCenter mainColor">密码找回</p>
  24. <div class="waysBlock">
  25. <div class="loginWays">
  26. <!--找回密码成功-->
  27. <ul class="cmpAllUl cmpCoverUl displayNone" id="VerificationOk">
  28. <li class="successImg"></li>
  29. <li class="alignCenter">
  30. <p class="importTip">密码找回成功,快去登录吧!</p>
  31. </li>
  32. <!--验证激活成功-已登录时隐藏按钮-->
  33. <li>
  34. <a href="login.html"><button type="button" class="frmtype frmtypeW btnModel headRadius save-block" id="logon">登录</button></a>
  35. </li>
  36. </ul>
  37. <!--邮箱链接失效-->
  38. <ul class="cmpAllUl cmpCoverUl displayNone" id="VerificationNo">
  39. <li class="failImg"></li>
  40. <li class="alignCenter">
  41. <p class="importTip">很抱歉,当前的链接已失效</p>
  42. <p class="smalltip alignCenter" id="smalltip">小提醒:邮件内的链接有效时长为10分钟。</p>
  43. </li>
  44. <li>
  45. <a href="pwdFindNew.html"><button type="button" class="frmtype frmtypeW btnModel headRadius save-block" id="resetPassword">重新找回密码</button>
  46. </li>
  47. </ul>
  48. </div>
  49. </div>
  50. </form>
  51. </div>
  52. </div>
  53. </div>
  54. <script type="text/javascript"src="js/jquery.cookie.js"></script>
  55. <script type="text/javascript"src="js/jquery.similar.msgbox.js"></script>
  56. <script type="text/javascript" src="js/common.js"></script>
  57. <script type="text/javascript">
  58. $(function(){
  59. var num = GetQueryString('num');
  60. if(num==1){
  61. $("#VerificationOk").removeClass("displayNone");
  62. }else{
  63. $("#VerificationNo").removeClass("displayNone");
  64. }
  65. })
  66. $("#logon").click(function(){
  67. location.href="login.html";
  68. });
  69. $("#resetPassword").click(function(){
  70. location.href="pwdFindNew.html";
  71. })
  72. </script>
  73. </body>
  74. </html>