Frontend elements to SugoiMusic, including CSS and public/private headers.
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.
 
 
 

28 lines
1.1 KiB

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