mirror of
https://e.coding.net/circlecloud/McAccount.git
synced 2024-11-17 00:58:57 +00:00
3340847e38
Signed-off-by: 502647092 <jtb1@163.com>
186 lines
5.9 KiB
PHP
186 lines
5.9 KiB
PHP
<?php
|
|
if (empty ( $_SESSION ['username'] ))
|
|
header ( "Location:" . Url ( 'index', 'login' ) );
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title><?=$title?></title>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,Chrome=1" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<!-- bootstrap -->
|
|
<link href="View/public/css/bootstrap/bootstrap.css" rel="stylesheet" />
|
|
<link href="View/public/css/bootstrap/bootstrap-responsive.css"
|
|
rel="stylesheet" />
|
|
<link href="View/public/css/bootstrap/bootstrap-overrides.css"
|
|
type="text/css" rel="stylesheet" />
|
|
|
|
<!-- global styles -->
|
|
<link rel="stylesheet" type="text/css" href="View/public/css/layout.css" />
|
|
<link rel="stylesheet" type="text/css"
|
|
href="View/public/css/elements.css" />
|
|
<link rel="stylesheet" type="text/css" href="View/public/css/icons.css" />
|
|
|
|
<!-- libraries -->
|
|
<link rel="stylesheet" type="text/css"
|
|
href="View/public/css/lib/font-awesome.css" />
|
|
|
|
<!-- this page specific styles -->
|
|
<link rel="stylesheet" href="View/public/css/compiled/personal-info.css"
|
|
type="text/css" media="screen" />
|
|
|
|
<!-- open sans font -->
|
|
<link
|
|
href='http://fonts.useso.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800'
|
|
rel='stylesheet' type='text/css' />
|
|
|
|
<!--[if lt IE 9]>
|
|
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
|
|
<![endif]-->
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
</head>
|
|
<body>
|
|
|
|
<!-- navbar -->
|
|
<?=load('header')?>
|
|
<!-- end navbar -->
|
|
|
|
<!-- main container .wide-content is used for this layout without sidebar :) -->
|
|
<div class="content wide-content col-xs-12 col-md-12 col-lg-12">
|
|
<div class="container-fluid">
|
|
<div class="settings-wrapper" id="pad-wrapper">
|
|
<!-- avatar column -->
|
|
<div class="span3 avatar-box">
|
|
<div class="personal-image">
|
|
<img src="View/public/tx.jpg" class="avatar img-circle" />
|
|
</div>
|
|
</div>
|
|
|
|
<!-- edit form column -->
|
|
<div class="span7 personal-info">
|
|
<h5 class="personal-title">Minecraft玩家信息</h5>
|
|
|
|
<form>
|
|
<div class="field-box">
|
|
<label>游戏帐号:</label> <input class="span3 inline-input" id="user"
|
|
type="text" value="<?=$_SESSION['username']?>"
|
|
disabled="disabled" />
|
|
</div>
|
|
<div class="field-box">
|
|
<label>邮箱地址:</label> <input class="span3 inline-input" id="mail"
|
|
type="text" value="" disabled="disabled" /> <span id="status"></span>
|
|
</div>
|
|
<div class="field-box">
|
|
<label>游戏币余额:</label> <input class="span3 inline-input"
|
|
id="money" type="text" value="" disabled="disabled" />
|
|
</div>
|
|
<div class="field-box">
|
|
<label>服务器信息:</label> 在线人数: <span id="now" ></span>/<span id="max" ></span>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- end main container -->
|
|
|
|
|
|
<!-- scripts -->
|
|
<script src="View/public/js/jquery-latest.js"></script>
|
|
<script src="View/public/js/bootstrap.min.js"></script>
|
|
<script src="View/public/js/theme.js"></script>
|
|
<script type="text/javascript">
|
|
select();
|
|
status();
|
|
current();
|
|
getinfo();
|
|
var data = "user=<?=$_SESSION['username']?>";
|
|
function select(){
|
|
$.ajax({
|
|
type:"GET",
|
|
dataType:"json",
|
|
data:data,
|
|
url:"<?=Url('mail_status', "select")?>",
|
|
success:function(rdata){
|
|
$.each(rdata.info,function(index,content)
|
|
{
|
|
if(rdata.status == "success")
|
|
{
|
|
$("#mail").val(content.email);
|
|
}
|
|
}
|
|
)},
|
|
error:function(){
|
|
alert("数据读取失败");
|
|
return false;
|
|
}
|
|
});
|
|
}
|
|
function status(){
|
|
$.ajax({
|
|
type:"GET",
|
|
dataType:"json",
|
|
data:data,
|
|
url:"<?=Url('mail_status', "stat")?>",
|
|
success:function(data){
|
|
$.each(data.info,function(index,content)
|
|
{
|
|
if(content.statu == 0)
|
|
{
|
|
$("#status").html("邮箱验证状态:尚未验证");
|
|
$("#status").css("color", "red");
|
|
}else{
|
|
$('#status').html("邮箱验证状态:已验证");
|
|
$("#status").css("color", "green");
|
|
}
|
|
})
|
|
},
|
|
error:function(){
|
|
alert("邮箱验证状态读取失败");
|
|
return false;
|
|
}
|
|
})
|
|
}
|
|
window.onload = function(){
|
|
var html = $('#status').html();
|
|
if(html.indexOf("尚未验证") != -1){
|
|
$('#status').html($('#status').html()+ " <a href='<?=Url('index', 'mail')?>' onclick='display()'>点击这里进行验证</a>")
|
|
}
|
|
}
|
|
function current(){
|
|
$.ajax({
|
|
type:"GET",
|
|
dataType:"json",
|
|
data:{user:"<?=$_SESSION['username']?>"},
|
|
url:"<?=Url('user_current' , 'current')?>",
|
|
success:function(rdata){
|
|
$("#money").val( rdata.info );
|
|
},
|
|
error:function(){
|
|
alert("尚未查询到此用户的游戏币余额");
|
|
}
|
|
})
|
|
}
|
|
function getinfo(){
|
|
$.ajax({
|
|
type:"GET",
|
|
dataType:"json",
|
|
data:{ip:"play.i5mc.com"},
|
|
url:"https://mcapi.us/server/status",
|
|
success:function(rdata){
|
|
if(rdata.status=="success"){
|
|
$("#max").html( rdata.players.max );
|
|
$("#now").html( rdata.players.now );
|
|
}
|
|
},
|
|
error:function(){
|
|
alert("尚未查询到服务器信息");
|
|
}
|
|
}
|
|
)
|
|
}
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|