submit.html.php 826 B

123456789101112131415161718192021222324
  1. <?php include $app->getModuleRoot() . 'common/view/header.lite.html.php';?>
  2. <main id="main">
  3. <div class="container">
  4. <div id="mainContent" class='main-content load-indicator'>
  5. <div class='main-header'>
  6. <h2><?php echo $lang->story->submit;?></h2>
  7. </div>
  8. <form class='main-form' method='post' target='hiddenwin'>
  9. <table class="table table-form">
  10. <tr>
  11. <th><?php echo $lang->story->reviewRange;?></th>
  12. <td colspan="2">
  13. <?php echo html::select('reviewRange', $lang->exportTypeList, 'all', "class='form-control'");?>
  14. </td>
  15. </tr>
  16. <tr>
  17. <th></th>
  18. <td><?php echo html::submitButton('', '', 'btn btn-primary');?></td>
  19. </tr>
  20. </table>
  21. </form>
  22. </div>
  23. </div>
  24. </main>