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.

staffpm.php 1.0KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <div id="compose"
  2. class="<?=($Hidden ? 'hidden' : '')?>">
  3. <form class="send_form" name="staff_message" action="staffpm.php" method="post">
  4. <input type="hidden" name="action" value="takepost" />
  5. <h3>
  6. <label for="subject">Subject</label>
  7. </h3>
  8. <input size="95" type="text" name="subject" id="subject" />
  9. <br />
  10. <h3>
  11. <label for="message">Message</label>
  12. </h3>
  13. <?php
  14. $TextPrev = new TEXTAREA_PREVIEW(
  15. $Name = 'message',
  16. $ID = 'message',
  17. ); ?>
  18. <strong>Send to: </strong>
  19. <select name="level">
  20. <?php if (!isset(G::$LoggedUser['LockedAccount'])) { ?>
  21. <option value="0" selected="selected">First Line Support</option>
  22. <option value="800">Forum Moderators</option>
  23. <?php } ?>
  24. <option value="1000">Staff</option>
  25. </select>
  26. <input type="button" value="Preview"
  27. class="hidden button_preview_<?=$TextPrev->getID()?>" />
  28. <input type="submit" value="Send message" />
  29. <input type="button" value="Hide" data-toggle-target="#compose" />
  30. </form>
  31. </div>