import.html.php 908 B

12345678910111213141516171819202122
  1. <?php include $app->getModuleRoot() . 'common/view/header.lite.html.php';?>
  2. <main>
  3. <div class="container">
  4. <div id="mainContent" class='main-content'>
  5. <div class='main-header'>
  6. <h2><?php echo $lang->user->importUser;?></h2>
  7. </div>
  8. <form enctype='multipart/form-data' method='post' target='hiddenwin' style='padding: 20px 0 15px'>
  9. <table class='table table-form w-p100'>
  10. <tr>
  11. <td><input type='file' name='file' class='form-control'/></td>
  12. <td class='w-150px'><?php echo html::submitButton('', '', 'btn btn-primary');?></td>
  13. </tr>
  14. <tr>
  15. <td class='text-left' colspan='2'><span class='label label-info'><?php echo $lang->task->importNotice;?></span></td>
  16. </tr>
  17. </table>
  18. </form>
  19. </div>
  20. </div>
  21. </main>
  22. <?php include $app->getModuleRoot() . 'common/view/footer.lite.html.php';?>