create.html 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {template 'common/header'}
  2. <div class="account-list-add-step">
  3. <ol class="breadcrumb we7-breadcrumb">
  4. <a href="{php echo url('account/manage', array('account_type' => ACCOUNT_TYPE_WEBAPP_NORMAL))}"><i class="wi wi-back-circle"></i> </a>
  5. <li><a href="{php echo url('account/manage', array('account_type' => ACCOUNT_TYPE_WEBAPP_NORMAL))}">PC列表</a></li>
  6. <li>新建PC</li>
  7. </ol>
  8. <div class="we7-step">
  9. <ul>
  10. </ul>
  11. </div>
  12. <form action="{php echo url('webapp/manage/create')}" method="post" class="we7-form">
  13. <!--第二步:基本信息-->
  14. <div class="form-group">
  15. <label for="" class="control-label col-sm-2">PC名称</label>
  16. <div class="form-controls col-sm-8">
  17. <input type="text" name="name" class="form-control" required autocomplete="off" />
  18. <span class="help-block">填写PC名称</span>
  19. </div>
  20. </div>
  21. <div class="form-group">
  22. <label for="" class="control-label col-sm-2">描述</label>
  23. <div class="form-controls col-sm-8">
  24. <textarea style="height: 80px;" class="form-control" name="description" required></textarea>
  25. <span class="help-block">用于说明此PC的功能及用途。</span>
  26. </div>
  27. </div>
  28. <div class="form-group">
  29. <input type="submit" name="submit" class="btn btn-primary btn-submit" value="提交"/>
  30. <input type="hidden" name="token" value="{$_W['token']}">
  31. </div>
  32. </form>
  33. </div>
  34. {template 'common/footer'}