|
|
|
@ -3,6 +3,8 @@
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
|
<meta charset="UTF-8" name="apple-itunes-app"
|
|
|
|
|
content="app-id=1049566852, affiliate-data=myAffiliateData, app-argument=wxe04f14817586480f://">
|
|
|
|
|
<link rel="apple-touch-icon" sizes="57x57" href="ico/apple-icon-57x57.png">
|
|
|
|
|
<link rel="apple-touch-icon" sizes="60x60" href="ico/apple-icon-60x60.png">
|
|
|
|
|
<link rel="apple-touch-icon" sizes="72x72" href="ico/apple-icon-72x72.png">
|
|
|
|
@ -46,6 +48,7 @@
|
|
|
|
|
a:link {
|
|
|
|
|
color: #08c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (min-width: 768px) {
|
|
|
|
|
.qrcode-target-show {
|
|
|
|
|
background-position: -201px -199px;
|
|
|
|
@ -75,6 +78,7 @@
|
|
|
|
|
transition: background-position .2s cubic-bezier(0.25, .5, .5, .9);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
.qrcode-target-show {
|
|
|
|
|
background-position: -201px -199px;
|
|
|
|
@ -181,7 +185,8 @@
|
|
|
|
|
<!--<br/>-->
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="form-group col-xs-12">
|
|
|
|
|
<input type="text" name="verifyCode" class="form-control login-info" style="width: 70%;display: inline"
|
|
|
|
|
<input type="text" name="verifyCode" class="form-control login-info"
|
|
|
|
|
style="width: 70%;display: inline"
|
|
|
|
|
id="verifyCode" placeholder="Verification Code">
|
|
|
|
|
<img class="captcha" id="kaptcha"
|
|
|
|
|
src="/global/userstatus/captcha-login"
|
|
|
|
@ -194,7 +199,8 @@
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-xs-12" id="wechat-btn-div" hidden>
|
|
|
|
|
<button type="button" id="wechat-btn" style="background-color: #f06010" class="btn btn-warning btn-block btn-flat">
|
|
|
|
|
<button type="button" id="wechat-btn" style="background-color: #f06010"
|
|
|
|
|
class="btn btn-warning btn-block btn-flat">
|
|
|
|
|
<i class="fa fa-wechat"></i> WeChat Sign In
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
@ -205,10 +211,12 @@
|
|
|
|
|
<div class="login-submit-margin">
|
|
|
|
|
<div class="col-sm-12 download-app">Download Royalpay App:
|
|
|
|
|
|
|
|
|
|
<a href="https://itunes.apple.com/cn/app/royalpay/id1049566852?l=en&mt=8"><img src="/static/images/Bitmap.png"></a>
|
|
|
|
|
<a href="https://royalpay-1256684202.cos.ap-chengdu.myqcloud.com/royalpay_release_2.1.3_20190420_google.apk"><img src="/static/images/Bitmap1.png"></a></div>
|
|
|
|
|
<a href="https://itunes.apple.com/cn/app/royalpay/id1049566852?l=en&mt=8"><img
|
|
|
|
|
src="/static/images/Bitmap.png"></a>
|
|
|
|
|
<a href="https://royalpay-1256684202.cos.ap-chengdu.myqcloud.com/royalpay_release_2.1.3_20190420_google.apk"><img
|
|
|
|
|
src="/static/images/Bitmap1.png"></a></div>
|
|
|
|
|
<!--<div class="col-sm-6">-->
|
|
|
|
|
<!---->
|
|
|
|
|
<!---->
|
|
|
|
|
<!--</div>-->
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
@ -259,7 +267,7 @@
|
|
|
|
|
});
|
|
|
|
|
$('#verifyCode').focus(function () {
|
|
|
|
|
var expire = $.cookie('code_expire_time');
|
|
|
|
|
if(expire!=null && new Date(parseInt(expire))<new Date()){
|
|
|
|
|
if (expire != null && new Date(parseInt(expire)) < new Date()) {
|
|
|
|
|
$('#kaptcha').click();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
@ -315,6 +323,7 @@
|
|
|
|
|
getNewQRCode();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
function getNewQRCode() {
|
|
|
|
|
$.ajax({
|
|
|
|
|
url: '/global/userstatus/partner_signin_app_qrcode',
|
|
|
|
@ -341,7 +350,7 @@
|
|
|
|
|
success: function (res) {
|
|
|
|
|
if (res.redirect_geek) {
|
|
|
|
|
getGeekSsoLoginUrl();
|
|
|
|
|
}else {
|
|
|
|
|
} else {
|
|
|
|
|
location.href = '/index.html';
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|