* adjust webapp.

This commit is contained in:
wangyidong
2013-02-25 05:59:11 +00:00
parent 9df65ddda0
commit b46581f4c1
11 changed files with 224 additions and 44 deletions

View File

@@ -15,31 +15,35 @@
<table class='table-5' align='center'>
<caption><?php echo $lang->webapp->create?></caption>
<tr>
<th><?php echo $lang->webapp->module?></th>
<th align='left'><?php echo $lang->webapp->module?></th>
<td><?php echo html::select('module', $modules, '', "class='select-3'")?></td>
</tr>
<tr>
<th><?php echo $lang->webapp->name?></th>
<th align='left'><?php echo $lang->webapp->name?></th>
<td><?php echo html::input('name', '', "class='text-3'")?></td>
</tr>
<tr>
<th><?php echo $lang->webapp->url?></th>
<th align='left'><?php echo $lang->webapp->url?></th>
<td><?php echo html::input('url', '', "class='text-3'")?></td>
</tr>
<tr>
<th><?php echo $lang->webapp->target?></th>
<th align='left'><?php echo $lang->webapp->target?></th>
<td><?php echo html::select('target', $lang->webapp->targetList, '', "class='select-3'")?></td>
</tr>
<tr class="size hidden">
<th><?php echo $lang->webapp->size?></th>
<th align='left'><?php echo $lang->webapp->size?></th>
<td><?php echo html::select('size', $lang->webapp->sizeList, '', "class='select-3'")?></td>
</tr>
<tr>
<th><?php echo $lang->webapp->desc?></th>
<th align='left'><?php echo $lang->webapp->abstract?></th>
<td><?php echo html::input('abstract', '', "class='text-3' maxlength='30'")?> <span><?php echo $lang->webapp->noticeAbstract?></span></td>
</tr>
<tr>
<th align='left'><?php echo $lang->webapp->desc?></th>
<td><?php echo html::textarea('desc', '', "class='area-1' rows='5'")?></td>
</tr>
<tr>
<th><?php echo $lang->webapp->icon?></th>
<th align='left'><?php echo $lang->webapp->icon?></th>
<td><?php echo html::file('files', "class='text-1' size='57'")?></td>
</tr>
<tr><td colspan='2' align='center'><?php echo html::submitButton()?></td></tr>