20 lines
393 B
PHP
Executable File
20 lines
393 B
PHP
Executable File
<?php
|
|
// require_once('../init.php');
|
|
// utils_redirect('../admin.php');
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>FlatPress</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Not Authorized</h1>
|
|
<p>You're not allowed to browse this folder.</p>
|
|
<p>Back to <a href="..">home page</a>.</p>
|
|
</body>
|
|
|
|
</html>
|