| 1 |
<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly ?> |
| 2 |
<div class="jltma-pop-contents-head"> |
| 3 |
<!-- Header top section with logo and close button --> |
| 4 |
<div class="jltma-header-top"> |
| 5 |
<div class="jltma-popup-head-content" style="display: flex; align-items:center; gap:8px"> |
| 6 |
<span> |
| 7 |
<img src="<?php echo esc_url( JLTMA_IMAGE_DIR . 'logo.svg' ); ?>" style="width: 30px;"> |
| 8 |
</span> |
| 9 |
<h3> |
| 10 |
<?php echo esc_html__(' Popup Builder', 'master-addons' );?> |
| 11 |
</h3> |
| 12 |
</div> |
| 13 |
|
| 14 |
<!-- Tab Navigation inside header --> |
| 15 |
<div class="jltma-tab-nav"> |
| 16 |
<button type="button" class="jltma-tab-button active" data-tab="general"> |
| 17 |
<?php esc_html_e('General', 'master-addons'); ?> |
| 18 |
</button> |
| 19 |
<button type="button" class="jltma-tab-button" data-tab="conditions"> |
| 20 |
<?php esc_html_e('Conditions', 'master-addons'); ?> |
| 21 |
</button> |
| 22 |
</div> |
| 23 |
|
| 24 |
<div class="jltma-pop-close"> |
| 25 |
<button class="close-btn" data-dismiss="modal"><span class="dashicons dashicons-no-alt"></span></button> |
| 26 |
</div> |
| 27 |
</div> |
| 28 |
</div> |