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.

compose.twig 1.1KB

1234567891011121314151617181920212223
  1. <div class="thin">
  2. <div class="header">
  3. <h2>Send a message to <a href="user.php?id={{ toid }}">{{ username }}</a></h2>
  4. </div>
  5. <form class="send_form" name="message" action="inbox.php" method="post" id="messageform">
  6. <div class="box pad">
  7. <input type="hidden" name="action" value="takecompose" />
  8. <input type="hidden" name="toid" value="{{ toid }}" />
  9. <input type="hidden" name="auth" value="{{ auth }}" />
  10. <div id="quickpost">
  11. <h3>Subject</h3>
  12. <input type="text" class="required" name="subject" size="95" value="{{ subject }}" /><br />
  13. <h3>Body</h3>
  14. <textarea id="body" class="required" name="body" cols="95" rows="10" onkeyup="resize('body')">{{ body }}</textarea>
  15. </div>
  16. <div id="preview" class="hidden"></div>
  17. <div id="buttons" class="center">
  18. <input type="button" value="Preview" onclick="Quick_Preview();" />
  19. <input type="submit" value="Send message" />
  20. </div>
  21. </div>
  22. </form>
  23. </div>