portal html css js resource

cmp-pwdReset02.html 2.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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/common.css">
  10. <link type="text/css" rel="stylesheet" href="css/cmpindex.css">
  11. <script type="text/javascript" src="js/public/jquery-1.11.1.js"></script>
  12. </head>
  13. <body class="covbodyBg">
  14. <div class="containerCon">
  15. <a href="../index.html" class="headlogo signLogo"></a>
  16. </div>
  17. <!--中间-->
  18. <div id="container">
  19. <div class="containerCon contConP">
  20. <div class="covFrmblock">
  21. <form class="cmpAllFrm">
  22. <p class="h1Font alignCenter cmpColor">重置企业账户密码</p>
  23. <ul class="cmpAllUl cmpCoverUl">
  24. <li>
  25. <ul class="form_head clearfix">
  26. <li class="col-w-4 stepActive">
  27. <span class="icon_step step1"></span>
  28. 输入企业邮箱
  29. </li>
  30. <li class="col-w-4 stepActive">
  31. <span class="icon_step step2g"></span>
  32. 接收密码重置邮件
  33. </li>
  34. <li class="col-w-4">
  35. <span class="icon_step step3"></span>
  36. 重置密码
  37. </li>
  38. </ul>
  39. </li>
  40. <li>
  41. <p class="importTip">密码重置邮件已发送至:<br />
  42. <span class="cmpColor" id="emailShow"></span>
  43. </p>
  44. <p class="smalltip alignCenter">请您在10分钟内登录您的企业邮箱,接收邮件,<br />点击链接后即可重置密码。</p>
  45. </li>
  46. <li>
  47. <button type="button" class="frmtype frmtypeW btnModel btnModelBig headRadius save-block" id="emailGo">登录邮箱</button>
  48. </li>
  49. </ul>
  50. </form>
  51. </div>
  52. </div>
  53. </div>
  54. <script type="text/javascript"src="js/public/jquery.cookie.js"></script>
  55. <script type="text/javascript" src="js/public/common.js"></script>
  56. <script type="text/javascript">
  57. $(function(){
  58. var companyEmailVal = GetQueryString("companyEmailVal");
  59. $("#emailShow").text(companyEmailVal);
  60. $("#emailGo").on("click", function(){
  61. var url = companyEmailVal.split('@')[1];
  62. for (var j in hash){
  63. if(hash[url]==undefined){
  64. location.href="http://mail." + url;
  65. }else{
  66. $(this).attr("href", hash[url]);
  67. location.href=hash[url];
  68. }
  69. }
  70. });
  71. })
  72. </script>
  73. </body>
  74. </html>