create.html.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. /**
  3. * The create of meetingroom module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2021 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
  6. * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
  7. * @author Yuchun Li <liyuchun@cnezsoft.com>
  8. * @package meetingroom
  9. * @version $Id: create.html.php 4903 2021-06-10 13:53:59Z lyc $
  10. * @link https://www.zentao.net
  11. */
  12. ?>
  13. <?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
  14. <div id="mainContent" class="main-content fade">
  15. <div class="center-block">
  16. <div class="main-header">
  17. <h2><?php echo $lang->meetingroom->create;?></h2>
  18. </div>
  19. <form class="load-indicator main-form form-ajax" method='post' enctype='multipart/form-data' id='dataform'>
  20. <table class="table table-form">
  21. <tbody>
  22. <tr>
  23. <th class='w-110px'><?php echo $lang->meetingroom->name;?></th>
  24. <td><?php echo html::input('name', '', "class='form-control'");?></td>
  25. <td></td>
  26. </tr>
  27. <tr>
  28. <th><?php echo $lang->meetingroom->position;?></th>
  29. <td><?php echo html::input('position', '', "class='form-control'");?></td>
  30. </tr>
  31. <tr>
  32. <th><?php echo $lang->meetingroom->seats;?></th>
  33. <td><?php echo html::input('seats', '', "class='form-control'");?></td>
  34. </tr>
  35. <tr>
  36. <th><?php echo $lang->meetingroom->equipment;?></th>
  37. <td>
  38. <div id='equipment' class='required'><?php echo html::checkbox('equipment', $lang->meetingroom->equipmentList);?></div>
  39. </td>
  40. </tr>
  41. <tr>
  42. <th><?php echo $lang->meetingroom->openTime;?></th>
  43. <td>
  44. <div id='openTime' class='required'><?php echo html::checkbox('openTime', $lang->meetingroom->openTimeList);?></div>
  45. </td>
  46. </tr>
  47. <tr>
  48. <td colspan='2' class='form-actions text-center'><?php echo html::submitButton() . html::backButton();?></td>
  49. </tr>
  50. </tbody>
  51. </form>
  52. </div>
  53. </div>
  54. <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>