123456789101112131415161718 |
- <?php
- View::show_header('Locked Account');
- ?>
-
- <div class="header">
- <h2>Locked Account</h2>
- </div>
-
- <?php 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>
- <?php
- }
- View::show_footer();
|