mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 19:06:27 +00:00
13 lines
337 B
PHP
13 lines
337 B
PHP
<?
|
|
View::show_header('Locked Account');
|
|
?>
|
|
<div class="header">
|
|
<h2>Locked Account</h2>
|
|
</div>
|
|
<? if (G::$LoggedUser['LockedAccount'] == STAFF_LOCKED) { ?>
|
|
<div class="box pad">
|
|
<p>Your account has been locked. Please send a <a href="staffpm.php">Staff PM</a> to find out how this happened.</p>
|
|
</div>
|
|
<? }
|
|
View::show_footer();
|