some style change
This commit is contained in:
parent
acd28577ae
commit
36c7a96a82
111
admin/index.php
111
admin/index.php
|
|
@ -1,10 +1,115 @@
|
|||
<!DOCTYPE HTML>
|
||||
<?php
|
||||
/**
|
||||
* @Author: prpr
|
||||
* @Date: 2016-02-03 14:39:50
|
||||
* @Last Modified by: prpr
|
||||
* @Last Modified time: 2016-02-04 16:56:34
|
||||
*/
|
||||
|
||||
session_start();
|
||||
$dir = dirname(dirname(__FILE__));
|
||||
require "$dir/includes/autoload.inc.php";
|
||||
require "$dir/config.php";
|
||||
|
||||
if(isset($_COOKIE['uname']) && isset($_COOKIE['token'])) {
|
||||
$_SESSION['uname'] = $_COOKIE['uname'];
|
||||
$_SESSION['token'] = $_COOKIE['token'];
|
||||
}
|
||||
|
||||
if (isset($_SESSION['uname'])) {
|
||||
$admin = new user($_SESSION['uname']);
|
||||
if ($_SESSION['token'] != $admin->getToken()) {
|
||||
header('Location: ../index.php?msg=Invalid token. Please login.');
|
||||
} else if (!$admin->is_admin) {
|
||||
header('Location: ../index.php?msg=Looks like that you are not administrator :(');
|
||||
}
|
||||
} else {
|
||||
header('Location: ../index.php?msg=Illegal access. Please login.');
|
||||
}
|
||||
?>
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Console - Blessing Skin Server 0.1</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Console - Blessing Skin Server</title>
|
||||
<link rel="shortcut icon" href="../assets/images/favicon.ico">
|
||||
<link rel="stylesheet" href="../libs/pure/pure-min.css">
|
||||
<link rel="stylesheet" href="../libs/pure/grids-responsive-min.css">
|
||||
<link rel="stylesheet" href="../assets/css/style.css">
|
||||
<link rel="stylesheet" href="../assets/css/profile.style.css">
|
||||
<link rel="stylesheet" href="../assets/css/admin.style.css">
|
||||
<link rel="stylesheet" href="../libs/ply/ply.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h2>Console</h2>
|
||||
<div class="header">
|
||||
<div class="home-menu pure-menu pure-menu-horizontal pure-menu-fixed">
|
||||
<a class="pure-menu-heading" href="../index.php">Blessing Skin Server</a>
|
||||
<ul class="pure-menu-list">
|
||||
<li class="pure-menu-item">
|
||||
<a class="pure-menu-link" href="../user/profile.php">Profile</a>
|
||||
</li>
|
||||
<li class="pure-menu-item">
|
||||
<a href="javascript:;" class="pure-menu-link">Welcome, <?php echo $_SESSION['uname']; ?>!</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="home-menu-blur">
|
||||
<div class="home-menu-wrp">
|
||||
<div class="home-menu-bg"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<table class="pure-table pure-table-horizontal">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>#</th>
|
||||
<th>Username</th>
|
||||
<th>Preview Textures</th>
|
||||
<th>Change Textures</th>
|
||||
<th>Opreation</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
<?php
|
||||
$db = new database();
|
||||
$result = $db->query("SELECT * FROM users");
|
||||
while ($row = $result->fetch_array()) { ?>
|
||||
<tr>
|
||||
<td><?php echo $row['uid']; ?></td>
|
||||
<td><?php echo $row['username']; ?></td>
|
||||
<td>
|
||||
<?php echo '<img id="'.$row['username'].'_skin" width="64" '.(($row['skin_hash'] == "") ? '' : 'src="http://skin.fuck.io/skin/'.$row['username'].'.png"').'/>'; ?>
|
||||
<?php echo '<img id="'.$row['username'].'_cape" width="64" '.(($row['cape_hash'] == "") ? '' : 'src="http://skin.fuck.io/cape/'.$row['username'].'.png"').'/>'; ?>
|
||||
</td>
|
||||
<td>
|
||||
<a href="javascript:showUpload('<?php echo $row['username'] ?>', 'skin');" class="pure-button pure-button-primary">Skin</a>
|
||||
<a href="javascript:showUpload('<?php echo $row['username'] ?>', 'cape');" class="pure-button pure-button-primary">Cape</a>
|
||||
</td>
|
||||
<td>
|
||||
<a href="javascript:showChange('<?php echo $row['username'] ?>');" class="pure-button pure-button-default">Password</a>
|
||||
<a href="javascript:showDelete('<?php echo $row['username'] ?>');" class="pure-button pure-button-error">Delete</a>
|
||||
</td>
|
||||
</tr>
|
||||
<?php } ?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="footer">
|
||||
© <a class="copy" href="https://prinzeugen.net">Blessing Studio</a> 2016
|
||||
</div>
|
||||
|
||||
</body>
|
||||
<script type="text/javascript" src="../libs/jquery/jquery-2.1.1.min.js"></script>
|
||||
<script type="text/javascript" src="../libs/ply/ply.min.js"></script>
|
||||
<script type="text/javascript" src="../assets/js/utils.js"></script>
|
||||
<script type="text/javascript" src="../assets/js/admin.utils.js"></script>
|
||||
</html>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
* @Author: prpr
|
||||
* @Date: 2016-01-21 19:12:06
|
||||
* @Last Modified by: prpr
|
||||
* @Last Modified time: 2016-02-03 16:39:42
|
||||
* @Last Modified time: 2016-02-04 12:56:15
|
||||
*/
|
||||
|
||||
.home-menu-blur {
|
||||
|
|
@ -66,7 +66,7 @@ body {
|
|||
|
||||
.upload-container {
|
||||
color: #333;
|
||||
margin-top: 35%;
|
||||
margin-top: 30%;
|
||||
margin-right: 30%;
|
||||
border: #989898 1px solid;
|
||||
border-radius: 4px;
|
||||
|
|
|
|||
|
|
@ -49,15 +49,15 @@ if (isset($_SESSION['uname'])) {
|
|||
<a href="javascript:;" title="Running"><span class="glyphicon glyphicon-forward"></span></a>
|
||||
<a href="javascript:;" title="Rotation"><span class="glyphicon glyphicon-repeat"></span></a>
|
||||
<ul class="pure-menu-list">
|
||||
<li class="pure-menu-item">
|
||||
<a href="javascript:;" class="pure-menu-link">Welcome, <?php echo $_SESSION['uname']; ?>!</a>
|
||||
</li>
|
||||
<li class="pure-menu-item">
|
||||
<a class="pure-menu-link" href="profile.php">Profile</a>
|
||||
</li>
|
||||
<li class="pure-menu-item">
|
||||
<a class="pure-menu-link" id="logout" href="javascript:;">Log out?</a>
|
||||
</li>
|
||||
<li class="pure-menu-item">
|
||||
<a href="javascript:;" class="pure-menu-link">Welcome, <?php echo $_SESSION['uname']; ?>!</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="home-menu-blur">
|
||||
<div class="home-menu-wrp">
|
||||
|
|
@ -85,10 +85,10 @@ if (isset($_SESSION['uname'])) {
|
|||
<h2 class="upload-title">Upload</h2>
|
||||
<div id="upload-form">
|
||||
<p>Select a skin:</p>
|
||||
<input type=file id="skininput" name="skininput" accept="image/png">
|
||||
<input type="file" id="skininput" name="skininput" accept="image/png">
|
||||
<br />
|
||||
<p>Select a cape:</p>
|
||||
<input type=file id="capeinput" name="capeinput" accept="image/png">
|
||||
<input type="file" id="capeinput" name="capeinput" accept="image/png">
|
||||
<br /><br />
|
||||
<button id="upload" class="pure-button pure-button-primary">Upload</button>
|
||||
<a href="?action=preview" class="pure-button">Preview</a>
|
||||
|
|
@ -119,7 +119,9 @@ if (isset($_SESSION['uname'])) {
|
|||
<br />
|
||||
<p>Select a cape:</p>
|
||||
<input type=file id="capeinput" name="capeinput" accept="image/png">
|
||||
<br /><br />
|
||||
<br />
|
||||
<p>Well, the skin server <b>does</b> support double layer skin of 1.8, but the preview <b>does not</b>. So just upload and you will get it display well in game.</p>
|
||||
|
||||
<button id="upload" class="pure-button pure-button-primary">Upload</button>
|
||||
<a id="preview" href="?action=preview" class="pure-button">Preview</a>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
* @Author: prpr
|
||||
* @Date: 2016-02-03 16:12:45
|
||||
* @Last Modified by: prpr
|
||||
* @Last Modified time: 2016-02-03 23:15:41
|
||||
* @Last Modified time: 2016-02-04 12:51:07
|
||||
*/
|
||||
|
||||
session_start();
|
||||
|
|
@ -98,6 +98,16 @@ if (isset($_SESSION['uname'])) {
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php if ($user->is_admin) { ?>
|
||||
<div class="pure-u-1 pure-u-md-1-2">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">Welcome, administrator.</div>
|
||||
<div class="panel-body">
|
||||
<p>Here manage your site: <a href="../admin/">Console</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php } ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user