portal html css js resource

pwdResult.html 2.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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/public/baseUtil.js"></script>
  57. <script type="text/javascript" src="js/public/genCom.js"></script>
  58. <script type="text/javascript">
  59. $(function(){
  60. var num = GetQueryString('num');
  61. if(num==1){
  62. $("#VerificationOk").removeClass("displayNone");
  63. }else{
  64. $("#VerificationNo").removeClass("displayNone");
  65. }
  66. })
  67. $("#logon").click(function(){
  68. location.href="login.html";
  69. });
  70. $("#resetPassword").click(function(){
  71. location.href="pwdFindNew.html";
  72. })
  73. </script>
  74. </body>
  75. </html>