|
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>密码重置</title>
<link type="text/css" rel="stylesheet" href="css/bootstrap.min.css">
<link type="text/css" rel="stylesheet" href="css/common.css">
<link type="text/css" rel="stylesheet" href="css/cmpindex.css">
<script type="text/javascript" src="js/public/jquery-1.11.1.js"></script>
</head>
<body class="covbodyBg">
<div class="containerCon">
<a href="../index.html" class="headlogo signLogo"></a>
</div>
<!--中间-->
<div id="container">
<div class="containerCon contConP">
<div class="covFrmblock">
<form class="cmpAllFrm">
<p class="h1Font alignCenter cmpColor">重置企业账户密码</p>
<ul class="cmpAllUl cmpCoverUl">
<li>
<ul class="form_head clearfix">
<li class="col-w-4 stepActive">
<span class="icon_step step1"></span>
输入企业邮箱
</li>
<li class="col-w-4 stepActive">
<span class="icon_step step2g"></span>
接收密码重置邮件
</li>
<li class="col-w-4">
<span class="icon_step step3"></span>
重置密码
</li>
</ul>
</li>
<li>
<p class="importTip">密码重置邮件已发送至:<br />
<span class="cmpColor" id="emailShow"></span>
</p>
<p class="smalltip alignCenter">请您在10分钟内登录您的企业邮箱,接收邮件,<br />点击链接后即可重置密码。</p>
</li>
<li>
<button type="button" class="frmtype frmtypeW btnModel btnModelBig headRadius save-block" id="emailGo">登录邮箱</button>
</li>
</ul>
</form>
</div>
</div>
</div>
<script type="text/javascript"src="js/public/jquery.cookie.js"></script>
<script type="text/javascript" src="js/public/common.js"></script>
<script type="text/javascript">
$(function(){
var companyEmailVal = GetQueryString("companyEmailVal");
$("#emailShow").text(companyEmailVal);
$("#emailGo").on("click", function(){
var url = companyEmailVal.split('@')[1];
for (var j in hash){
if(hash[url]==undefined){
location.href="http://mail." + url;
}else{
$(this).attr("href", hash[url]);
location.href=hash[url];
}
}
});
})
</script>
</body>
</html>
|