BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

default.php 370B

123456789101112131415161718
  1. <?php
  2. View::show_header('Locked Account');
  3. ?>
  4. <div class="header">
  5. <h2>Locked Account</h2>
  6. </div>
  7. <?php if (G::$LoggedUser['LockedAccount'] === STAFF_LOCKED) { ?>
  8. <div class="box pad">
  9. <p>
  10. Your account has been locked.
  11. Please send a <a href="staffpm.php">Staff PM</a> to find out how this happened.
  12. </p>
  13. </div>
  14. <?php
  15. }
  16. View::show_footer();