xxb/module/upgrade/view/confirm.html.php
2023-10-23 15:51:36 +08:00

29 lines
1.1 KiB
PHP

<?php
/**
* The html template file of confirm 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: confirm.html.php 4029 2016-08-26 06:50:41Z liugang $
*/
?>
<?php include '../../common/view/header.lite.html.php';?>
<form method='post' action='<?php echo inlink('execute', "fromVersion={$fromVersion}");?>'>
<div class='container'>
<div class='modal-dialog'>
<div class='modal-header'>
<h3><?php echo $lang->upgrade->confirm;?></h3>
</div>
<div class='modal-body'>
<div class='mg-10px'><?php echo html::textarea('', $confirm, "rows='10' class='w-p100 borderless'");?></div>
</div>
<div class='modal-footer'>
<?php echo html::submitButton($lang->upgrade->execute) . html::hidden('fromVersion', $fromVersion);?>
</div>
</div>
</div>
</form>
<?php include '../../install/view/footer.html.php';?>