-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
54 lines (49 loc) · 1.49 KB
/
index.php
File metadata and controls
54 lines (49 loc) · 1.49 KB
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
50
51
52
53
54
<?php
require_once('connect.php');
if (!isset($_COOKIE['RoPlaySecurity'])) {
die(require_once('auth.php'));
}
require_once('header.php');
?>
<div class="modal fade" id="APIKeys" tabindex="-1" role="dialog" aria-labelledby="APIKeysLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="APIKeysLabel">API Keys</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<?php echo $APIKeys; ?>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="row"><br /><br /></div>
<div class="row">
<div class="col-sm-4"></div>
<div class="col-lg-4">
<!--h3>Dashboard</h3><hr /-->
<div class="card text-center" style="width: 18rem;">
<br />
<?php
if ($search) {
if ($searchfound)
require('searchcard.php');
else
require('searchcardempty.php');
} else {
require('defaultcard.php');
}
?>
</div>
<!--?php echo "dashboard<br />logged in as ~ $username#$discriminator<br />discord id ~ $id<br>"; echo json_encode($userarr); ?></div-->
<div class="col-sm-4"></div>
</div>
<?php
require_once('footer.php');
?>