step6.html.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. /**
  3. * The html template file of index method of install module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2015 禅道软件(青岛)有限公司(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: step5.html.php 2568 2012-02-18 15:53:35Z zhujinyong@cnezsoft.com$
  10. */
  11. ?>
  12. <?php include $app->getModuleRoot() . 'common/view/header.lite.html.php';?>
  13. <div class='container'>
  14. <div class='modal-dialog'>
  15. <div class='modal-header'>
  16. <strong><?php echo $lang->install->success;?></strong>
  17. </div>
  18. <div class='modal-body'>
  19. <div class='alert with-icon alert-pure'>
  20. <i class='icon-check-circle'></i>
  21. <div class='content'>
  22. <?php $joinZentao = ($installFileDeleted ? $lang->install->successLabel : $lang->install->successNoticeLabel) . $lang->install->joinZentao;?>
  23. <?php $isVIP = $config->edition == 'biz' ? 'VIP' : '';?>
  24. <?php echo nl2br(sprintf($joinZentao, $isVIP, $config->version, $this->createLink('admin', 'register'), $this->createLink('admin', 'bind'), inlink('step6')));?>
  25. </div>
  26. </div>
  27. </div>
  28. <div class='modal-footer'>
  29. <?php
  30. echo html::a($lang->install->officeDomain, $lang->install->register, '_blank', "class='btn btn-wide btn-success'");
  31. echo "<span class='text-muted'> &nbsp; " . $lang->install->or . ' &nbsp; </span>';
  32. echo html::a('index.php', $lang->install->login, '', "class='btn bin-wide btn-primary'");
  33. ?>
  34. </div>
  35. </div>
  36. </div>
  37. <?php include $app->getModuleRoot() . 'common/view/footer.lite.html.php';?>