badword_import.tpl.php 993 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. defined('IN_ADMIN') or exit('No permission resources.');
  3. include $this->admin_tpl('header');?>
  4. <div class="pad_10">
  5. <table cellpadding="2" cellspacing="1" class="table_form" width="100%">
  6. <form action="?m=admin&c=badword&a=import" method="post" name="myform">
  7. <tr>
  8. <th width="10%"> <?php echo L('badword_name')?> </th>
  9. <td width="200"><textarea name="info" cols="50" rows="6" require="true" datatype="limit" ></textarea> </td>
  10. </tr>
  11. <tr>
  12. <th> <?php echo L('badword_name')?> <?php echo L('badword_require')?>: </th>
  13. <td>
  14. <?php echo L('badword_import_infos')?>
  15. </td>
  16. </tr>
  17. <tr>
  18. <th></th>
  19. <td>
  20. <input type="hidden" name="forward" value="?m=admin&c=badword&a=import">
  21. <input type="submit" name="dosubmit" value=" <?php echo L('submit')?> " class="button">
  22. &nbsp; <input type="reset" name="reset" value=" <?php echo L('clear')?> " class="button">
  23. </td>
  24. </tr>
  25. </form>
  26. </table>
  27. </div>
  28. </body>
  29. </html>