html-csv-import-progress.php 567 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Admin View: Importer - CSV import progress
  4. *
  5. * @package WooCommerce\Admin\Importers
  6. */
  7. if ( ! defined( 'ABSPATH' ) ) {
  8. exit;
  9. }
  10. ?>
  11. <div class="wc-progress-form-content woocommerce-importer woocommerce-importer__importing">
  12. <header>
  13. <span class="spinner is-active"></span>
  14. <h2><?php esc_html_e( 'Importing', 'woocommerce' ); ?></h2>
  15. <p><?php esc_html_e( 'Your products are now being imported...', 'woocommerce' ); ?></p>
  16. </header>
  17. <section>
  18. <progress class="woocommerce-importer-progress" max="100" value="0"></progress>
  19. </section>
  20. </div>