32 lines
1.3 KiB
PHP
32 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* The html template file of step0 method of upgrade 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 upgrade
|
|
* @version $Id: selectversion.html.php 1292 2014-06-05 03:03:52Z guanxiying $
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.lite.html.php';?>
|
|
<form method='post' action='<?php echo inlink('confirm');?>'>
|
|
<div class='container'>
|
|
<div class='modal-dialog modal-lg'>
|
|
<div class='modal-header'>
|
|
<h3><?php echo $lang->install->license;?></h3>
|
|
</div>
|
|
<div class='modal-body'>
|
|
<?php echo html::textarea('license', $license, "class='form-control mgb-10' rows='12' readonly")?>
|
|
<div class='text-left mgb-10'>
|
|
<label class='checkbox-inline'><input type='checkbox' id='agree' checked='checked' /><?php echo $lang->agreement;?></label>
|
|
</div>
|
|
</div>
|
|
<div class='modal-footer'>
|
|
<?php echo html::a(inlink('step1'), $lang->install->next, "class='btn btn-primary btn-install'");?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
<?php include '../../install/view/footer.html.php';?>
|