portal html css js resource

cmp-pwdReset02.html 2.5KB

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