<?php defined( 'ABSPATH' ) || die( 'No direct access allowed' ); ?>
<h1><?php echo esc_html( get_admin_page_title() ); ?></h1>

<!-- Security Settings Banner -->
<div class="notice notice-info" style="margin: 20px 20px 20px 0; padding: 15px; border-left: 4px solid #0073aa;">
    <div style="display: flex; align-items: flex-start;">
        <span class="dashicons dashicons-info" style="color: #0073aa; margin-right: 10px; margin-top: 2px;"></span>
        <div>
            <p style="margin: 0; color: #646970;">
                These security settings only apply to the integration with <strong>Make</strong> (formerly Integromat). 
                Other integrations using the WordPress REST API will not be affected by these configurations.
            </p>
        </div>
    </div>
</div>

<div id="imt-content-panel" class="imapie_settings_container">
    <form action="options.php" method="post">
        <?php
        settings_fields( 'integromat_security_options' );
        do_settings_sections( 'integromat_security_options' );
        submit_button( 'Save Settings' );
        ?>
    </form>
</div>
