-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.php
More file actions
36 lines (30 loc) · 782 Bytes
/
Copy pathadmin.php
File metadata and controls
36 lines (30 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
include('config.php');
?>
<!DOCTYPE html>
<html>
<head>
<title> Admin checker </title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/request.js"></script>
<link rel="stylesheet" href="css/style.css" media="all">
<script type="text/javascript">
function run(){
send_request({
'game_action': 'admin'
}, function(respond){
$('.admin-check-info').html(respond.content);
});
setTimeout( run ,2000);
}
run();
</script>
</head>
<body>
<div class="wrap">
<div class="admin-check-info">
</div>
</div>
</body>
</html>