14 lines
No EOL
556 B
PHP
14 lines
No EOL
556 B
PHP
<?php
|
|
if (!defined('SVRJS_MOD_DIRECTORY')) die;
|
|
$pageTitle = "User suspended";
|
|
$pageDescription = "User suspended";
|
|
include 'header.php';
|
|
?>
|
|
<main class="content">
|
|
<h1>User suspended</h1>
|
|
<p>The user has been suspended due to violations of <a href="<?php echo htmlspecialchars((URL_REWRITTEN ? APP_ROOT : APP_ROOT . APP_FILENAME . '/') . 'tos') ?>">Terms of Service</a>.</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';
|
|
?>
|