svrjs-mods-directory/includes/page_editmodnotallowed.php
2024-12-27 15:05:54 +01:00

14 lines
No EOL
441 B
PHP

<?php
if (!defined('SVRJS_MOD_DIRECTORY')) die;
$pageTitle = "Mod editing not allowed";
$pageDescription = "Mod editing not allowed";
include 'header.php';
?>
<main class="content">
<h1>Mod editing not allowed</h1>
<p>You are not allowed to edit this mod.</p>
<p><a href="<?php echo htmlspecialchars(URL_REWRITTEN ? APP_ROOT : APP_ROOT . APP_FILENAME . '/') ?>" class="btn">Return to home</a></p>
</main>
<?php
include 'footer.php';
?>