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.

62 lines
2.1 KiB

  1. <center>
  2. <div align="center" style="width: <?= (TABLES_WIDTH+40); ?>px; background-color: #F1F3FE">
  3. <div align="center" style="width: <?= TABLES_WIDTH; ?>px;">
  4. <br>
  5. <div align="left" style="width: <?= TABLES_WIDTH; ?>px">
  6. <span class="pa_sect"><?= $skin['L.banlist']; ?></span>
  7. </div>
  8. <form action="<?= $skin['action']; ?>" method="POST">
  9. <table class="maintable" width="<?= TABLES_WIDTH; ?>" style="border-width: 0px">
  10. <tr>
  11. <td width="17" style="background-image: url('template/images/td_beam_left.gif')"></td>
  12. <td class="beam" style="background-image: url('template/images/td_beam_top.gif')">
  13. <p align="center"><?= $skin['L.edit_ban']; ?></p>
  14. </td>
  15. <td width="17" style="background-image: url('template/images/td_beam_right.gif')"></td>
  16. </tr>
  17. </table>
  18. <table class="maintable" width="<?= TABLES_WIDTH; ?>" style="border-top: 0px">
  19. <!-- edit IP --->
  20. <tr>
  21. <td align="right" class="fitem">
  22. <span class="fstandard"><b>IP:</b></span>
  23. </td>
  24. <td class="fitem">
  25. <input type="text" name="ip" style="width: 200px" value="<?= $_POST['ip']; ?>">
  26. </td>
  27. <td class="fitem">
  28. <span class="fsmall"><?= $skin['L.ip.HELP']; ?></span>
  29. </td>
  30. </tr>
  31. <!-- edit user name -->
  32. <tr>
  33. <td align="right" class="fitem">
  34. <span class="fstandard"><b><?php echo $skin['L.user_name']; ?>:</b></span>
  35. </td>
  36. <td class="fitem">
  37. <input type="text" name="u_id" style="width: 200px" value="<?= $_POST['u_id']; ?>">
  38. </td>
  39. <td class="fitem">
  40. <span class="fsmall"><?= $skin['L.user_name.HELP']; ?></span>
  41. </td>
  42. </tr>
  43. <!-- edit motive -->
  44. <tr>
  45. <td align="right" class="fitem">
  46. <span class="fstandard"><b><?= $skin['L.motive']; ?>:</b></span>
  47. </td>
  48. <td class="fitem">
  49. <input type="text" name="motive" style="width: 200px" value="<?= $_POST['motive']; ?>">
  50. </td>
  51. <td class="fitem">
  52. &nbsp;
  53. </td>
  54. </tr>
  55. <tr>
  56. <td width="738" height="20" class="fitem" align="center" valign="top" colspan="3">
  57. <input type="submit" class="fbutton" value="<?php echo $skin['L.save']; ?>" />&nbsp;
  58. <input type="reset" class="fbutton" value="<?php echo $skin['L.reset']; ?>" />&nbsp;
  59. </td>
  60. </tr>
  61. </table>
  62. </form>