ztcompany.html.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * The ztcomany view file of admin module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(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 Yidong Wang <yidong@cnezsoft.com>
  8. * @package admin
  9. * @version $Id$
  10. * @link https://www.zentao.net
  11. */
  12. ?>
  13. <?php include '../../common/view/header.html.php';?>
  14. <div id='mainContent' class='main-content'>
  15. <div class='center-block mw-500px'>
  16. <div class='main-header'>
  17. <h2><?php echo $lang->admin->ztCompany;?></h2>
  18. </div>
  19. <form method='post' target='hiddenwin'>
  20. <table class='table table-form'>
  21. <?php foreach($fields as $field):?>
  22. <tr>
  23. <th><?php echo $field == 'company' ? $lang->company->name : $lang->user->$field;?></th>
  24. <td><?php echo html::input($field, '', "class='form-control'");?></td>
  25. </tr>
  26. <?php endforeach;?>
  27. <tr>
  28. <td colspan='2' class='text-center'><?php echo html::submitButton();?></td>
  29. </tr>
  30. </table>
  31. </form>
  32. </div>
  33. </div>
  34. <?php include '../../common/view/footer.html.php';?>