Files
EasySoft-ZenTaoPMS/module/install/view/license.html.php

30 lines
1.1 KiB
PHP

<?php
/**
* The html file of license 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 Yidong Wang <yidong@cnezsoft.com>
* @package install
* @version $Id$
*/
?>
<?php include '../../common/view/header.lite.html.php';?>
<div class='container'>
<div class='modal-dialog'>
<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'")?>
<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 btn-wide'");?>
</div>
</div>
</div>
<?php include '../../common/view/footer.lite.html.php';?>