review.html.php 1.0 KB

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * The review view file of refund module of RanZhi.
  4. *
  5. * @copyright Copyright 2009-2018 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
  6. * @license ZPL (http://zpl.pub/page/zplv12.html)
  7. * @author Tingting Dai <daitingting@xirangit.com>
  8. * @package refund
  9. * @version $Id$
  10. * @link http://www.ranzhi.org
  11. */
  12. ?>
  13. <?php include '../../common/view/header.modal.html.php';?>
  14. <?php include $app->getModuleRoot() . 'common/view/kindeditor.html.php';?>
  15. <form method='post' id='ajaxForm' action='<?php echo inlink('review', "id={$attendID}&reviewStatus=reject")?>'>
  16. <table class='table table-form'>
  17. <tr>
  18. <th class='w-80px text-middle'><?php echo $lang->attend->rejectReason;?></th>
  19. <td><?php echo html::textarea('comment', '', "class='form-control'");?></td>
  20. </tr>
  21. <tr>
  22. <th></th>
  23. <td><?php echo baseHTML::submitButton();?></td>
  24. </tr>
  25. </table>
  26. </form>
  27. <?php include '../../common/view/footer.modal.html.php';?>