12345678910111213141516171819202122232425262728293031323334353637 |
- {template 'common/header'}
- <div class="account-list-add-step">
- <ol class="breadcrumb we7-breadcrumb">
- <a href="{php echo url('account/manage', array('account_type' => ACCOUNT_TYPE_WEBAPP_NORMAL))}"><i class="wi wi-back-circle"></i> </a>
- <li><a href="{php echo url('account/manage', array('account_type' => ACCOUNT_TYPE_WEBAPP_NORMAL))}">PC列表</a></li>
- <li>新建PC</li>
- </ol>
- <div class="we7-step">
- <ul>
- </ul>
- </div>
- <form action="{php echo url('webapp/manage/create')}" method="post" class="we7-form">
- <!--第二步:基本信息-->
- <div class="form-group">
- <label for="" class="control-label col-sm-2">PC名称</label>
- <div class="form-controls col-sm-8">
- <input type="text" name="name" class="form-control" required autocomplete="off" />
- <span class="help-block">填写PC名称</span>
- </div>
- </div>
- <div class="form-group">
- <label for="" class="control-label col-sm-2">描述</label>
- <div class="form-controls col-sm-8">
- <textarea style="height: 80px;" class="form-control" name="description" required></textarea>
- <span class="help-block">用于说明此PC的功能及用途。</span>
- </div>
- </div>
- <div class="form-group">
- <input type="submit" name="submit" class="btn btn-primary btn-submit" value="提交"/>
- <input type="hidden" name="token" value="{$_W['token']}">
- </div>
- </form>
- </div>
- {template 'common/footer'}
|