73 lines
2.7 KiB
PHP
73 lines
2.7 KiB
PHP
<?php
|
|
/**
|
|
* The html template file of step4 method of install module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
|
* @license ZPL (http://zpl.pub/page/zplv12.html)
|
|
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package ZenTaoPMS
|
|
* @version $Id: step4.html.php 4129 2013-01-18 01:58:14Z wwccss $
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.lite.html.php';?>
|
|
<div class='container'>
|
|
<div class='modal-dialog'>
|
|
<?php if(isset($error)):?>
|
|
<div class='modal-header'>
|
|
<strong><?php echo $lang->install->error;?></strong>
|
|
</div>
|
|
<div class='modal-body'>
|
|
<div class='alert alert-danger alert-pure with-icon'>
|
|
<i class='icon-info-sign'></i>
|
|
<div class='content'><?php echo $error;?></div>
|
|
</div>
|
|
</div>
|
|
<div class='modal-footer'>
|
|
<?php echo html::commonButton($lang->install->pre, "onclick='javascript:history.back(-1)'");?>
|
|
</div>
|
|
<?php elseif(isset($success)):?>
|
|
<div class='modal-header'>
|
|
<strong><?php echo $lang->install->success;?></strong>
|
|
</div>
|
|
<div class='modal-body'>
|
|
<div class='alert alert-success alert-pure with-icon'>
|
|
<i class='icon-ok-sign'></i>
|
|
<div class='content'><?php echo $afterSuccess;?></div>
|
|
</div>
|
|
</div>
|
|
<div class='modal-footer'>
|
|
<?php echo html::commonButton($lang->install->pre, "onclick='javascript:history.back(-1)'");?>
|
|
</div>
|
|
<?php else:?>
|
|
<div class='modal-header'>
|
|
<strong><?php echo $lang->install->getPriv;?></strong>
|
|
</div>
|
|
<div class='modal-body'>
|
|
<form class='form-condensed' method='post' target='hiddenwin'>
|
|
<table class='table table-form mw-400px' style='margin: 0 auto'>
|
|
<tr>
|
|
<th class='w-100px'><?php echo $lang->install->company;?></th>
|
|
<td><?php echo html::input('company', '', "class='form-control' autocomplete='off'");?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->install->account;?></th>
|
|
<td><?php echo html::input('account', '', "class='form-control' autocomplete='off'");?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->install->password;?></th>
|
|
<td><?php echo html::input('password', '', "class='form-control' autocomplete='off'");?></td>
|
|
</tr>
|
|
<tr>
|
|
<th></th><td><?php echo html::checkBox('importDemoData', $lang->install->importDemoData);?></td>
|
|
</tr>
|
|
<tr class='text-center'>
|
|
<td colspan='2'><?php echo html::submitButton();?></td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
<?php endif;?>
|
|
</div>
|
|
</div>
|
|
<?php include '../../common/view/footer.lite.html.php';?>
|