forked from TheCJGCJG/CJFreedom-Panel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manage.php
49 lines (37 loc) · 1.21 KB
/
manage.php
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
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
$PAGE['title'] = "Management";
include 'inc/config.php';
include 'inc/sessions.php';
include 'inc/functions.php';
if ($_SESSION['user']['rank'] < 3) {
die('You must be a Senior Admin.');
}
?>
<!DOCTYPE html>
<html>
<head>
<?php include 'pageparts/head.php'; ?>
</head>
<body>
<div id="wrapper">
<?php include 'pageparts/nav.php'; ?>
<div id="page-wrapper">
<div class="row">
<div class="col-lg-12">
<h1 class="page-header">CJFreedom Panel <small>Management</small></h1>
</div>
<!-- /.col-lg-12 -->
</div>
<!-- /.row -->
<div class="well col-lg-6">
<button type="button" onclick="sendToServer('action=start');" class="btn btn-success">Start Server</button>
<button type="button" onclick="sendToServer('action=restart');" class="btn btn-info">Restart Server</button>
<button type="button" onclick="sendToServer('action=stop');" class="btn btn-warning">Stop Server</button>
</div>
</div>
<!-- /#page-wrapper -->
</div>
<!-- /#wrapper -->
<?php include 'pageparts/footerjs.php'; ?>
</body>
</html>