deny.html.php 781 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * The deny view file of editor 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)
  7. * @author Yidong Wang <yidong@cnezsoft.com>
  8. * @package editor
  9. * @version $Id$
  10. * @link https://www.zentao.net
  11. */
  12. ?>
  13. <?php include $app->getModuleRoot() . 'common/view/header.lite.html.php';?>
  14. <style>
  15. html{height:100%}
  16. body{height:100%;padding-bottom:0px;}
  17. #mainContent{height:100%}
  18. </style>
  19. <div id='mainContent' class='main-content'>
  20. <div class='alert alert-warning'><?php echo $this->lang->editor->onlyLocalVisit;?></div>
  21. </div>
  22. <?php include $app->getModuleRoot() . 'common/view/footer.lite.html.php';?>