import.html.php 1.0 KB

1234567891011121314151617181920212223242526
  1. <?php include $app->getModuleRoot() . 'common/view/header.lite.html.php';?>
  2. <style>input[type=file]:focus, input[type=checkbox]:focus, input[type=radio]:focus {outline: none;}</style>
  3. <main>
  4. <div class="container">
  5. <div id="mainContent" class='main-content'>
  6. <div class='main-header'>
  7. <h2><?php echo $title;?></h2>
  8. </div>
  9. <form enctype='multipart/form-data' method='post' target='hiddenwin' style='padding: 20px 0 15px'>
  10. <table class='table table-form w-p100'>
  11. <tr>
  12. <td><input type='file' name='file' class='form-control'/></td>
  13. <td class='w-150px'><?php echo html::submitButton('', '', 'btn btn-primary');?></td>
  14. </tr>
  15. <tr>
  16. <td class='text-left' colspan='2'><span class='label label-info'><?php echo $lang->transfer->importNotice;?></span></td>
  17. </tr>
  18. </table>
  19. </form>
  20. </div>
  21. </div>
  22. </main>
  23. <script>
  24. $.cookie('maxImport', 0);
  25. </script>
  26. <?php include $app->getModuleRoot() . 'common/view/footer.lite.html.php';?>