1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta content="yes" name="apple-mobile-web-app-capable">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0,minimum-scale=1.0,user-scalable=0" />
- <title>验证邮箱</title>
- <link rel="stylesheet" type="text/css" href="../common/reset.css"/>
- <script type="text/javascript" src="../common/jquery-2.1.0.js"></script>
- <script type="text/javascript">
- document.documentElement.style.fontSize = 100 * (document.documentElement.clientWidth/375) + "px";
- window.onresize = function(){
- document.documentElement.style.fontSize = 100 * (document.documentElement.clientWidth/375) + "px";
- }
- </script>
- <style type="text/css">
- .banner{width: 2rem;margin: auto;margin-top: 0.71rem;margin-bottom: 0.86rem;}
- .title{font-size: 0.14rem;line-height: 0.2rem;color: #444444;text-align: center;}
- </style>
- </head>
- <body>
- <img src="img/youxiangyanzheng.png" class="banner" />
- <p class="title"></p>
- </body>
- </html>
- <script type="text/javascript">
- function parseQueryString(url) {
- var urlObj = {};
- var reg = /([^?=&]+)=([^?=&]+)/g;
- url.replace(reg, ($0, $1, $2) => {
- urlObj[$1] = decodeURIComponent($2);
- })
- return urlObj;
- }
- var qs = parseQueryString(window.location.href);
- if(qs.num == 0){//0验证失败 1验证成功
- $(".title").html('验证失败!请重新发送验证到该邮箱')
- }else if(qs.num == 1){
- $(".title").html('恭喜您已成功绑定邮箱,祝您记账愉快~')
- }
- </script>
|