forked from lcrowther-snyk/top-lang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin.php
35 lines (33 loc) · 1.06 KB
/
admin.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
<?php
include './user.php';
$user = null;
if ($_COOKIE['user']) {
$user = unserialize($_COOKIE['user']);
}
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<title>TopLang</title>
</head>
<body>
<div class="container">
<div style="height: 40px"></div>
<div style="width: 50%; margin: 0 auto; text-align: center;">
<? if ($user && $user->isAdmin) { ?>
<div class="form-text text-success"><? echo file_get_contents("/var/flag");?></div>
<? } else if ($user) { ?>
<div class="form-text text-warning">You are not admin 🛑</div>
<? } else { ?>
<div class="form-text text-danger">Please <a href="/login.php">login</a></div>
<? } ?>
</div>
</div>
<script>
</script>
</body>
</html>