A lightweight forum engine written in PHP. Repository is now obsolete and read-only. http://www.pioder.pl/uforum.html
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.

38 lines
1.9 KiB

  1. <script language="JavaScript" type="text/javascript">
  2. function showhide() {
  3. if (document.getElementById('quick_reply1').style.display == 'none') {
  4. document.getElementById('quick_reply1').style.display = '';
  5. document.getElementById('quick_reply2').style.display = '';
  6. document.getElementById('quick_reply3').style.display = ''; } else {
  7. document.getElementById('quick_reply1').style.display = 'none';
  8. document.getElementById('quick_reply2').style.display = 'none';
  9. document.getElementById('quick_reply3').style.display = 'none'; }}
  10. </script>
  11. <span class="fsmall">&nbsp;<br></span>
  12. <form method="POST" action="<? echo $skin['url']; ?>" name="form_dsf">
  13. <table class="maintable" width="<?= TABLES_WIDTH; ?>" style="border-width: 0px">
  14. <tr>
  15. <td width="17" style="background-image: url('skins/reFresh/images/td_beam_left.gif')"></td>
  16. <td height="14" class="beam" onclick="javascript:showhide()" style="background-image: url('skins/reFresh/images/td_beam_top.gif')"><? echo $skin['ltitle']; ?> </td>
  17. <td width="17" style="background-image: url('skins/reFresh/images/td_beam_right.gif')"></td>
  18. </tr>
  19. </table>
  20. <table class="maintable" width="<?= TABLES_WIDTH; ?>" style="border-top: 0px">
  21. <tr>
  22. <td width="120" id="quick_reply1" align="center" valign="top" class="fitem"> <?= $skin['smiles']; ?></td>
  23. <td class="fitem" id="quick_reply2" valign="top">
  24. <span class="fstandard"><b><? echo $skin['lmsg']; ?>:</b></span><br>
  25. <textarea name="textedit" id="textedit" rows="7" cols="54"></textarea><br>
  26. <script language="JavaScript" type="text/javascript">
  27. make_wyzz('textedit');
  28. </script>
  29. </td>
  30. </tr>
  31. <tr>
  32. <td class="fitem" align="center" id="quick_reply3" colspan="2">
  33. <input type="submit" class="fbutton" value="<?php echo $skin['lsave']; ?>" />&nbsp;
  34. <input type="reset" class="fbutton" value="<?php echo $skin['lreset']; ?>" />
  35. </td>
  36. </tr>
  37. </table>
  38. </form>