| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- /**
- * The html template file of index method of install module of ZenTaoPMS.
- *
- * @copyright Copyright 2009-2015 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
- * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
- * @author Chunsheng Wang <chunsheng@cnezsoft.com>
- * @package ZenTaoPMS
- * @version $Id: step5.html.php 2568 2012-02-18 15:53:35Z zhujinyong@cnezsoft.com$
- */
- ?>
- <?php include $app->getModuleRoot() . 'common/view/header.lite.html.php';?>
- <div class='container'>
- <div class='modal-dialog'>
- <div class='modal-header'>
- <strong><?php echo $lang->install->success;?></strong>
- </div>
- <div class='modal-body'>
- <div class='alert with-icon alert-pure'>
- <i class='icon-check-circle'></i>
- <div class='content'>
- <?php $joinZentao = ($installFileDeleted ? $lang->install->successLabel : $lang->install->successNoticeLabel) . $lang->install->joinZentao;?>
- <?php $isVIP = $config->edition == 'biz' ? 'VIP' : '';?>
- <?php echo nl2br(sprintf($joinZentao, $isVIP, $config->version, $this->createLink('admin', 'register'), $this->createLink('admin', 'bind'), inlink('step6')));?>
- </div>
- </div>
- </div>
- <div class='modal-footer'>
- <?php
- echo html::a($lang->install->officeDomain, $lang->install->register, '_blank', "class='btn btn-wide btn-success'");
- echo "<span class='text-muted'> " . $lang->install->or . ' </span>';
- echo html::a('index.php', $lang->install->login, '', "class='btn bin-wide btn-primary'");
- ?>
- </div>
- </div>
- </div>
- <?php include $app->getModuleRoot() . 'common/view/footer.lite.html.php';?>
|