35 lines
1.2 KiB
PHP
Executable File
35 lines
1.2 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* The setbasic view of company module of RanZhi.
|
|
*
|
|
* @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 company
|
|
* @version $Id: setbasic.html.php 4029 2016-08-26 06:50:41Z liugang $
|
|
* @link http://www.ranzhi.org
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.html.php';?>
|
|
<?php include '../../common/view/kindeditor.html.php';?>
|
|
<div class='panel'>
|
|
<div class='panel-heading'><strong><i class='icon-building'></i> <?php echo $lang->company->setBasic;?></strong></div>
|
|
<div class='panel-body'>
|
|
<form method='post' id='ajaxForm'>
|
|
<table class='table table-form'>
|
|
<tr>
|
|
<th style='width:100px'><?php echo $lang->company->name;?></th>
|
|
<td style='width:50%'><?php echo html::input('name', isset($company) ? $company : '', "class='form-control'");?></td><td></td>
|
|
</tr>
|
|
<tr>
|
|
<th></th>
|
|
<td colspan='2'>
|
|
<?php echo html::submitButton();?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<?php include '../../common/view/footer.html.php';?>
|