blob: d65fc9ebc5158254a40f22bd1e9f816b7ba68dad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<?php require "../lib/login.php"; ?>
<html>
<head>
<?php include 'head.php' ?>
<title>super secret admin page</title>
</head>
<body>
<?php include 'navbar.php' ?>
<div class="main limwidth">
<h2>admin</h2>
</div>
<?php include 'footer.php' ?>
</body>
</html>
|