create.html.php 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
  2. <?php include $app->getModuleRoot() . 'common/view/kindeditor.html.php';?>
  3. <div id="mainContent" class="main-content fade">
  4. <div class="center-block">
  5. <div class="main-header">
  6. <h2><?php echo $lang->market->create;?></h2>
  7. </div>
  8. <form class="load-indicator main-form form-ajax" method='post' enctype='multipart/form-data' id='dataform'>
  9. <table class="table table-form">
  10. <tbody>
  11. <tr>
  12. <th class='w-140px'><?php echo $lang->market->name;?></th>
  13. <td><?php echo html::input('name', '', "class='form-control'");?></td>
  14. <td></td>
  15. </tr>
  16. <tr>
  17. <th><?php echo $lang->market->industry;?></th>
  18. <td><?php echo html::input('industry', '', "class='form-control'");?></td>
  19. </tr>
  20. <tr>
  21. <th><?php echo $lang->market->scale;?></th>
  22. <td>
  23. <div class="input-group">
  24. <?php echo html::input('scale', '', "class='form-control'");?>
  25. <span class="input-group-addon"><?php echo $lang->market->hundredMillion;?></span>
  26. </div>
  27. </td>
  28. </tr>
  29. <tr>
  30. <th><?php echo $lang->market->speed;?></th>
  31. <td><?php echo html::select('speed', $lang->market->speedList, '', "class='form-control picker-select'");?></td>
  32. </tr>
  33. <tr>
  34. <th><?php echo $lang->market->maturity;?></th>
  35. <td><?php echo html::select('maturity', $lang->market->maturityList, '', "class='form-control picker-select'");?></td>
  36. </tr>
  37. <tr>
  38. <th><?php echo $lang->market->competition;?></th>
  39. <td><?php echo html::select('competition', $lang->market->competitionList, '', "class='form-control picker-select'");?></td>
  40. </tr>
  41. <tr>
  42. <th><?php echo $lang->market->ppm;?></th>
  43. <td><?php echo html::select('ppm', $lang->market->ppmList, '', "class='form-control picker-select'");?></td>
  44. <td>
  45. <icon class='icon icon-help' data-toggle='popover' data-trigger='focus hover' data-placement='right' data-tip-class='text-muted popover-lg tipWidth' data-html='true' data-content="<?php echo htmlspecialchars($lang->market->tips);?>"></icon>
  46. </td>
  47. </tr>
  48. <tr>
  49. <th><?php echo $lang->market->strategy;?></th>
  50. <td><?php echo html::select('strategy', $lang->market->strategyList, '', "class='form-control picker-select'");?></td>
  51. </tr>
  52. <tr>
  53. <th><?php echo $lang->market->desc;?></th>
  54. <td colspan='2'><?php echo html::textarea('desc', '', "class='form-control'");?></td>
  55. </tr>
  56. <tr>
  57. <td class='form-actions text-center' colspan='3'><?php echo html::submitButton() . html::backButton();?></td>
  58. </tr>
  59. </tbody>
  60. </table>
  61. </form>
  62. </div>
  63. </div>
  64. <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>