49 lines
2.2 KiB
PHP
Executable File
49 lines
2.2 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* The html template file of step4 method of install module of XXB.
|
|
*
|
|
* @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd., www.zentao.net)
|
|
* @license ZOSL (https://zpl.pub/page/zoslv1.html)
|
|
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package install
|
|
* @version $Id: step4.html.php 4029 2016-08-26 06:50:41Z liugang $
|
|
* @link https://xuanim.com
|
|
*/
|
|
include '../../common/view/header.lite.html.php';
|
|
?>
|
|
<div class='container'>
|
|
<div class='modal-dialog' style='width: 450px'>
|
|
<form method='post' class='form-horizontal' id='adminForm'>
|
|
<div class='modal-content'>
|
|
<?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'><?php echo $error;?></div>
|
|
</div>
|
|
<div class='modal-footer'><?php echo html::backButton($lang->install->pre, 'btn btn-primary');?></div>
|
|
<?php else: ?>
|
|
<div class='modal-header'><strong><i class='icon-key'></i> <?php echo $lang->install->setAdmin;?></strong></div>
|
|
<div class='modal-body'>
|
|
<div class='form-group'>
|
|
<label for='account' class='col-xs-2 control-label'><?php echo $lang->install->account;?></label>
|
|
<div class='col-xs-8'><?php echo html::input('account', '', "class='form-control'");?></div>
|
|
</div>
|
|
<div class='form-group'>
|
|
<label for='password' class='col-xs-2 control-label'><?php echo $lang->install->password;?></label>
|
|
<div class='col-xs-8'><?php echo html::input('password', '', "class='form-control' id='password1'");?></div>
|
|
</div>
|
|
<?php if($this->app->clientLang != 'en'):?>
|
|
<div class='form-group'>
|
|
<label class='col-xs-2'></label>
|
|
<div class='col-xs-8'><?php echo html::checkBox('importDemoData', $lang->install->importDemoData);?></div>
|
|
</div>
|
|
<?php endif;?>
|
|
</div>
|
|
<div class='modal-footer'><?php echo html::submitButton();?></div>
|
|
<?php endif; ?>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<?php include './footer.html.php';?>
|