55 lines
2.1 KiB
PHP
55 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* The create view file of serverRoom module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2015 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
|
|
* @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
|
|
* @author Jiangxiu Peng <pengjiangxiu@cnezsoft.com>
|
|
* @package serverRoom
|
|
* @version $Id$
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
|
|
<div id='mainContent' class='main-content'>
|
|
<div class='main-header'>
|
|
<h2><?php echo $lang->serverroom->create?></h2>
|
|
</div>
|
|
<form method='post' target='hiddenwin'>
|
|
<table class='table table-form'>
|
|
<tr>
|
|
<th class='w-100px'><?php echo $lang->serverroom->name?></th>
|
|
<td class='w-p25-f'><?php echo html::input('name', '', "class='form-control'")?></td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->serverroom->city?></th>
|
|
<td><?php echo html::select('city', $lang->serverroom->cityList, '', "class='form-control chosen'")?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->serverroom->line?></th>
|
|
<td><?php echo html::select('line', $lang->serverroom->lineList, '', "class='form-control chosen'")?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->serverroom->bandwidth?></th>
|
|
<td><?php echo html::input('bandwidth', '', "class='form-control'")?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->serverroom->provider;?></th>
|
|
<td><?php echo html::select('provider', $lang->serverroom->providerList, '', "class='form-control chosen'")?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->serverroom->owner;?></th>
|
|
<td><?php echo html::select('owner', $users, '', "class='form-control chosen'")?></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan='2' class='text-center form-actions'>
|
|
<?php echo html::submitButton();?>
|
|
<?php echo html::backButton('', '', 'btn btn-wide');?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
<?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>
|