editname.html.php 1.1 KB

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * The edit view file of instance 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 Jianhua Wang <wangjianhua@easycorp.ltd>
  8. * @package instance
  9. * @version $Id$
  10. * @link https://www.zentao.net
  11. */
  12. ?>
  13. <?php include $this->app->getModuleRoot() . '/common/view/header.html.php';?>
  14. <div id='mainContent' class='main-content'>
  15. <div class='main-header'>
  16. <h2><?php echo $lang->instance->editName;?></h2>
  17. </div>
  18. <form method='post' target='hiddenwin' id='dataform'>
  19. <table class='table table-form'>
  20. <tr>
  21. <th class='w-100px'><?php echo $lang->instance->name;?></th>
  22. <td><?php echo html::input('name', $instance->name, "class='form-control' maxlength='50'");?></td>
  23. </tr>
  24. </table>
  25. <div class='text-center form-actions'><?php echo html::submitButton() . html::backButton();?></div>
  26. </form>
  27. </div>
  28. <?php include $this->app->getModuleRoot() . '/common/view/footer.html.php';?>