attributes.twig
3 years ago
footer.twig
3 years ago
header.twig
9 months ago
introduction.twig
3 years ago
multi-currency.twig
9 months ago
notice.twig
3 years ago
store-pages.twig
3 years ago
wizard-notice.twig
3 years ago
header.twig
24 lines
| 1 | <!DOCTYPE html> |
| 2 | <html xmlns="http://www.w3.org/1999/xhtml" {{ language_attributes() }}> |
| 3 | <head> |
| 4 | <meta name="viewport" content="width=device-width"/> |
| 5 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> |
| 6 | <title>{{ title }}</title> |
| 7 | {{ wp_print_scripts( 'wcml-setup' ) }} |
| 8 | {{ wp_do_action( 'admin_enqueue_scripts' ) }} |
| 9 | {{ wp_print_scripts( 'wpml-posthog' ) }} {# Needs to be after `admin_enqueue_scripts` where it's enqueued / See entry point in wpml/wpml/src/config-scripts.php #} |
| 10 | {{ wp_do_action( 'admin_print_styles' ) }} |
| 11 | {{ wp_do_action( 'admin_head' ) }} |
| 12 | </head> |
| 13 | <body class="wcml-setup wp-core-ui"> |
| 14 | <div class="wcml-setup__wrapper"> |
| 15 | <h1 id="wcml-logo"><img |
| 16 | src="{{ WCML_PLUGIN_URL }}/res/images/wcml-logo.svg" |
| 17 | alt="WPML Multilingual & Multicurrency for WooCommerce"/></h1> |
| 18 | |
| 19 | {% if has_handler %} |
| 20 | <form class="wcml-setup-form" method="post"> |
| 21 | <input type="hidden" name="nonce" value="{{ nonce }}"/> |
| 22 | <input type="hidden" name="handle_step" value="{{ step }}"/> |
| 23 | {% endif %} |
| 24 |