Files
EasySoft-ZenTaoPMS/module/group/view/create.html.php
wangchunsheng 78873b15e7 * adjust the create form's style.
* adjust row height of table.
 * adjust fieldset's style.
2012-06-30 07:10:32 +00:00

30 lines
1.2 KiB
PHP

<?php
/**
* The create view of group module of ZenTaoPMS.
*
* @copyright Copyright 2009-2012 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
* @package group
* @version $Id$
* @link http://www.zentao.net
*/
?>
<?php include '../../common/view/header.html.php';?>
<script>var holders=<?php echo json_encode($lang->group->placeholder);?></script>
<form method='post' target='hiddenwin' id='createform'>
<table align='center' class='table-4 a-left'>
<caption><?php echo $lang->group->create;?></caption>
<tr>
<th class='rowhead'><?php echo $lang->group->name;?></th>
<td><?php echo html::input('name', '', "class=text-1");?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->group->desc;?></th>
<td><?php echo html::textarea('desc', '', "rows=5 class=area-1");?></textarea></td>
</tr>
<tr><td colspan='2' class='a-center'><?php echo html::submitButton();?></td></tr>
</table>
</form>
<?php include '../../common/view/footer.html.php';?>