error.html.php 909 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * The html template file of deny method of user 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 Chunsheng Wang <chunsheng@cnezsoft.com>
  8. * @package ZenTaoPMS
  9. * @version $Id: deny.html.php 4129 2013-01-18 01:58:14Z wwccss $
  10. */
  11. include '../../common/view/header.lite.html.php';
  12. ?>
  13. <div class='container'>
  14. <div class='modal-dialog'>
  15. <div class='modal-header'><strong><?php echo $lang->sso->deny;?></strong></div>
  16. <div class='modal-body'>
  17. <div class='alert with-icon alert-pure'>
  18. <i class='icon-exclamation-sign'></i>
  19. <div class='content'><?php echo $message;?>
  20. </div>
  21. </div>
  22. </div>
  23. </div>
  24. </div>
  25. </body>
  26. </html>