showimport.html.php 828 B

1234567891011121314151617181920212223
  1. <?php include $app->getModuleRoot() . 'transfer/view/header.html.php';?>
  2. <div id="mainContent" class="main-content">
  3. <div class="main-header clearfix">
  4. <h2><?php echo $lang->transfer->import;?></h2>
  5. </div>
  6. <form class='main-form' target='hiddenwin' method='post'>
  7. <table class='table table-form' id='showData'>
  8. <thead>
  9. <tr>
  10. <?php include $app->getModuleRoot() . 'transfer/view/thead.html.php';?>
  11. </tr>
  12. </thead>
  13. <tbody>
  14. </tbody>
  15. <tfoot class='hidden'>
  16. <?php include $app->getModuleRoot() . 'transfer/view/tfoot.html.php';?>
  17. </tfoot>
  18. </table>
  19. <?php if(!$this->session->insert); include $app->getModuleRoot() . 'common/view/noticeimport.html.php';?>
  20. </form>
  21. </div>
  22. <?php include $app->getModuleRoot() . 'transfer/view/footer.html.php';?>