    <style>
        .custom-login-container {
            max-width: 400px;
            margin: 50px auto;
            padding: 30px 40px;
            border-radius: 0;
            /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
            background: #f9f9f9;
            font-family: Montserrat, sans-serif;
            border: 1px solid #003281;
            border-radius: 5px;
        }

        .custom-login-container h2 {
            text-align: center;
            margin-bottom: 20px;
        }

        .custom-login-container label {
            display: block;
            margin-bottom: 5px;
            font-size: 16px;
            color: #000;
            font-family: Montserrat, sans-serif;
        }

        .custom-login-container input[type="email"],
        .custom-login-container input[type="text"] {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 0;
            background-color: #fff;
            border-radius: 5px;
            outline: 0 !important;
            cursor: text !important;
            font-size: 15px !important;
            box-sizing: border-box !important;
            box-shadow: none !important;
            position: static;
        }

        .custom-login-container button {
            width: 100%;
            padding: 16px 20px !important;
            background: #003281 !important;
            box-shadow: none;
            border: none !important;
            font-weight: 600 !important;
            color: #fff;
            cursor: pointer;
            border-radius: 5px;
            font-size: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .custom-login-container .loading button{
            text-indent: -999px;
            pointer-events: none;
        }
        
        .custom-login-container .loading button:after{
            content: '';
            width: 16px;
            height: 16px;
            border: 2px solid #FFF;
            border-bottom-color: transparent;
            border-radius: 50%;
            display: inline-block;
            box-sizing: border-box;
            animation: rotation 1s linear infinite;
        }
        
        @keyframes rotation {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        } 

        .custom-login-container button:hover {
            background-color: #005177;
        }

        .custom-login-container .message {
            text-align: center;
            margin: 10px 0;
            color: #ff1313;
            font-size: 16px;
            font-weight: 500;
        }

        .custom-register-button a {
            color: #003281 !important;
            cursor: pointer !important;
            width: 100%;
            box-shadow: none;
            text-shadow: none;
            font-family: inherit;
            outline: 0 !important;
            margin: 0;
            opacity: 1;
            -webkit-appearance: none;
            font-size: 15px;
            border: solid 2px #003281 !important;
            display: block;
            width: 100%;
            line-height: 1em !important;
            padding: 16px 20px !important;
            text-decoration: none !important;
            text-align: center;
            text-transform: none !important;
            font-weight: 600 !important;
            box-sizing: border-box;
            background-color: transparent !important;
            border-radius: 5px;
        }

        .or-text {
            position: relative;
            font-size: 16px;
            font-weight: 700;
            color: #000;
            text-align: center;
            margin: 20px 0;
        }

        .or-text:before {
            content: "";
            position: absolute;
            width: 170px;
            height: 2px;
            background: #003281;
            left: 0;
            top: 11px;
        }

        .or-text:after {
            content: "";
            position: absolute;
            width: 170px;
            height: 2px;
            background: #003281;
            right: 0;
            top: 11px;
        }

        .um-page-login .mkdf-container-inner.clearfix {
            padding: 0 !important;
        }
		.page-id-7424 .mkdf-st-separator {
    background-color: #003281 !important;
    margin: 10px 0 !important;
} 

@media (max-width:480px){
.or-text:before {
    width: 105px;
  }

.or-text:after {
    width: 105px;
}

.page-id-7424 .mkdf-section-title-holder .mkdf-st-separator {
    width: 80px;
    height: 2px;
    margin: 6px 0 !important;
}

.page-id-7424 .mkdf-section-title-holder .mkdf-st-title .mkdf-st-title-mark {
    left: 0px;
}
}

@media (max-width:376px){
.or-text:before {
    width: 90px;
  }

.or-text:after {
    width: 90px;
}
}

@media (max-width:325px){
.or-text:before {
    width: 75px;
  }

.or-text:after {
    width: 75px;
}
}

    </style>
    <div class="custom-login-container">
        <div class="mkdf-section-title-holder  " style="text-align: center">
            <div class="mkdf-st-inner">
                <h2 class="mkdf-st-title">
                    Login <span class="mkdf-st-title-mark" style="color: #ee0034">.</span>
                </h2>
                <div class="mkdf-st-separator" style="background-color: #1e73be"></div>
            </div>
        </div>
        <form id="custom-login-form">
            <label for="email">Email:</label>
            <input type="email" name="email" id="email" required>
            <button type="submit" name="send_otp">Send Verification Code</button>
        </form>

        <form id="otp-verification-form" style="display:none;">
            <label for="otp">Verification Code:</label>
            <input type="text" name="otp" id="otp" required>
            <button type="submit" name="verify_otp">Verify Code</button>
        </form>
        <div class="message" id="message"></div>
        <!--<div class="or-text">OR</div>-->
        <!--<div class="custom-register-button">-->
        <!--    <a href="https://7bg.598.mytemp.website/tradeshow-2025/register/" class="register-button-link">-->
        <!--        Register </a>-->
        <!--</div>-->
    </div>
    <script>
        document.addEventListener("DOMContentLoaded", function() {
            const loginForm = document.getElementById("custom-login-form");
            const otpForm = document.getElementById("otp-verification-form");
            const messageDiv = document.getElementById("message");

            loginForm.addEventListener("submit", function(event) {
                event.preventDefault();
                this.classList.add('loading');
                const formData = new FormData(loginForm);
                formData.append('action', 'send_otp');

                fetch("https://7bg.598.mytemp.website/tradeshow-2025/wp-admin/admin-ajax.php", {
                        method: "POST",
                        body: formData
                    })
                    .then(response => response.json())
                    .then(data => {
                        if (data.success) {
                            loginForm.style.display = "none";
                            otpForm.style.display = "block";
                            messageDiv.innerHTML = data.data;
                            this.classList.remove('loading');
                            console.log(data.data);
                        } else {
                            messageDiv.innerHTML = data.data;
                            this.classList.remove('loading');
                            console.log(data.data);
                        }
                    }).catch(error => {
                        console.error('Error:', error);
                        messageDiv.innerHTML = 'An error occurred. Please try again.';
                    });
            });

            otpForm.addEventListener("submit", function(event) {
                event.preventDefault();
                this.classList.add('loading');
                const formData = new FormData(otpForm);
                formData.append('email', document.getElementById("email").value);
                formData.append('action', 'verify_otp');

                fetch("https://7bg.598.mytemp.website/tradeshow-2025/wp-admin/admin-ajax.php", {
                        method: "POST",
                        body: formData
                    })
                    .then(response => response.json())
                    .then(data => {
                        if (data.success) {
                            this.classList.remove('loading');
                            window.location.href = "https://7bg.598.mytemp.website/tradeshow-2025/account/";
                        } else {
                            messageDiv.innerHTML = data.data;
                            this.classList.remove('loading');
                            console.log(data.data);
                        }
                    }).catch(error => {
                        console.error('Error:', error);
                        messageDiv.innerHTML = 'An error occurred. Please try again.';
                        this.classList.remove('loading');
                    });
            });
        });
    </script>
    <style>
        .custom-login-container {
            max-width: 400px;
            margin: 50px auto;
            padding: 30px 40px;
            border-radius: 0;
            /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
            background: #f9f9f9;
            font-family: Montserrat, sans-serif;
            border: 1px solid #003281;
            border-radius: 5px;
        }

        .custom-login-container h2 {
            text-align: center;
            margin-bottom: 20px;
        }

        .custom-login-container label {
            display: block;
            margin-bottom: 5px;
            font-size: 16px;
            color: #000;
            font-family: Montserrat, sans-serif;
        }

        .custom-login-container input[type="email"],
        .custom-login-container input[type="text"] {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 0;
            background-color: #fff;
            border-radius: 5px;
            outline: 0 !important;
            cursor: text !important;
            font-size: 15px !important;
            box-sizing: border-box !important;
            box-shadow: none !important;
            position: static;
        }

        .custom-login-container button {
            width: 100%;
            padding: 16px 20px !important;
            background: #003281 !important;
            box-shadow: none;
            border: none !important;
            font-weight: 600 !important;
            color: #fff;
            cursor: pointer;
            border-radius: 5px;
            font-size: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .custom-login-container .loading button{
            text-indent: -999px;
            pointer-events: none;
        }
        
        .custom-login-container .loading button:after{
            content: '';
            width: 16px;
            height: 16px;
            border: 2px solid #FFF;
            border-bottom-color: transparent;
            border-radius: 50%;
            display: inline-block;
            box-sizing: border-box;
            animation: rotation 1s linear infinite;
        }
        
        @keyframes rotation {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        } 

        .custom-login-container button:hover {
            background-color: #005177;
        }

        .custom-login-container .message {
            text-align: center;
            margin: 10px 0;
            color: #ff1313;
            font-size: 16px;
            font-weight: 500;
        }

        .custom-register-button a {
            color: #003281 !important;
            cursor: pointer !important;
            width: 100%;
            box-shadow: none;
            text-shadow: none;
            font-family: inherit;
            outline: 0 !important;
            margin: 0;
            opacity: 1;
            -webkit-appearance: none;
            font-size: 15px;
            border: solid 2px #003281 !important;
            display: block;
            width: 100%;
            line-height: 1em !important;
            padding: 16px 20px !important;
            text-decoration: none !important;
            text-align: center;
            text-transform: none !important;
            font-weight: 600 !important;
            box-sizing: border-box;
            background-color: transparent !important;
            border-radius: 5px;
        }

        .or-text {
            position: relative;
            font-size: 16px;
            font-weight: 700;
            color: #000;
            text-align: center;
            margin: 20px 0;
        }

        .or-text:before {
            content: "";
            position: absolute;
            width: 170px;
            height: 2px;
            background: #003281;
            left: 0;
            top: 11px;
        }

        .or-text:after {
            content: "";
            position: absolute;
            width: 170px;
            height: 2px;
            background: #003281;
            right: 0;
            top: 11px;
        }

        .um-page-login .mkdf-container-inner.clearfix {
            padding: 0 !important;
        }
		.page-id-7424 .mkdf-st-separator {
    background-color: #003281 !important;
    margin: 10px 0 !important;
} 

@media (max-width:480px){
.or-text:before {
    width: 105px;
  }

.or-text:after {
    width: 105px;
}

.page-id-7424 .mkdf-section-title-holder .mkdf-st-separator {
    width: 80px;
    height: 2px;
    margin: 6px 0 !important;
}

.page-id-7424 .mkdf-section-title-holder .mkdf-st-title .mkdf-st-title-mark {
    left: 0px;
}
}

@media (max-width:376px){
.or-text:before {
    width: 90px;
  }

.or-text:after {
    width: 90px;
}
}

@media (max-width:325px){
.or-text:before {
    width: 75px;
  }

.or-text:after {
    width: 75px;
}
}

    </style>
    <div class="custom-login-container">
        <div class="mkdf-section-title-holder  " style="text-align: center">
            <div class="mkdf-st-inner">
                <h2 class="mkdf-st-title">
                    Login <span class="mkdf-st-title-mark" style="color: #ee0034">.</span>
                </h2>
                <div class="mkdf-st-separator" style="background-color: #1e73be"></div>
            </div>
        </div>
        <form id="custom-login-form">
            <label for="email">Email:</label>
            <input type="email" name="email" id="email" required>
            <button type="submit" name="send_otp">Send Verification Code</button>
        </form>

        <form id="otp-verification-form" style="display:none;">
            <label for="otp">Verification Code:</label>
            <input type="text" name="otp" id="otp" required>
            <button type="submit" name="verify_otp">Verify Code</button>
        </form>
        <div class="message" id="message"></div>
        <!--<div class="or-text">OR</div>-->
        <!--<div class="custom-register-button">-->
        <!--    <a href="https://7bg.598.mytemp.website/tradeshow-2025/register/" class="register-button-link">-->
        <!--        Register </a>-->
        <!--</div>-->
    </div>
    <script>
        document.addEventListener("DOMContentLoaded", function() {
            const loginForm = document.getElementById("custom-login-form");
            const otpForm = document.getElementById("otp-verification-form");
            const messageDiv = document.getElementById("message");

            loginForm.addEventListener("submit", function(event) {
                event.preventDefault();
                this.classList.add('loading');
                const formData = new FormData(loginForm);
                formData.append('action', 'send_otp');

                fetch("https://7bg.598.mytemp.website/tradeshow-2025/wp-admin/admin-ajax.php", {
                        method: "POST",
                        body: formData
                    })
                    .then(response => response.json())
                    .then(data => {
                        if (data.success) {
                            loginForm.style.display = "none";
                            otpForm.style.display = "block";
                            messageDiv.innerHTML = data.data;
                            this.classList.remove('loading');
                            console.log(data.data);
                        } else {
                            messageDiv.innerHTML = data.data;
                            this.classList.remove('loading');
                            console.log(data.data);
                        }
                    }).catch(error => {
                        console.error('Error:', error);
                        messageDiv.innerHTML = 'An error occurred. Please try again.';
                    });
            });

            otpForm.addEventListener("submit", function(event) {
                event.preventDefault();
                this.classList.add('loading');
                const formData = new FormData(otpForm);
                formData.append('email', document.getElementById("email").value);
                formData.append('action', 'verify_otp');

                fetch("https://7bg.598.mytemp.website/tradeshow-2025/wp-admin/admin-ajax.php", {
                        method: "POST",
                        body: formData
                    })
                    .then(response => response.json())
                    .then(data => {
                        if (data.success) {
                            this.classList.remove('loading');
                            window.location.href = "https://7bg.598.mytemp.website/tradeshow-2025/account/";
                        } else {
                            messageDiv.innerHTML = data.data;
                            this.classList.remove('loading');
                            console.log(data.data);
                        }
                    }).catch(error => {
                        console.error('Error:', error);
                        messageDiv.innerHTML = 'An error occurred. Please try again.';
                        this.classList.remove('loading');
                    });
            });
        });
    </script>
{"id":7424,"date":"2024-06-11T09:09:13","date_gmt":"2024-06-11T09:09:13","guid":{"rendered":"https:\/\/aaraa.lpipl.com\/tradeshow-2024\/login\/"},"modified":"2024-06-27T11:38:41","modified_gmt":"2024-06-27T11:38:41","slug":"login","status":"publish","type":"page","link":"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/login\/","title":{"rendered":"Login"},"content":{"rendered":"<p><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_price":"","_stock":"","_tribe_ticket_header":"","_tribe_default_ticket_provider":"","_ticket_start_date":"","_ticket_end_date":"","_tribe_ticket_show_description":"","_tribe_ticket_show_not_going":false,"_tribe_ticket_use_global_stock":"","_tribe_ticket_global_stock_level":"","_global_stock_mode":"","_global_stock_cap":"","_tribe_rsvp_for_event":"","_tribe_ticket_going_count":"","_tribe_ticket_not_going_count":"","_tribe_tickets_list":"[]","_tribe_ticket_has_attendee_info_fields":false,"footnotes":"","_tec_slr_enabled":"","_tec_slr_layout":""},"class_list":["post-7424","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Login - AARA - Tradeshow 2026<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/login\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Login - AARA - Tradeshow 2026\" \/>\n<meta property=\"og:url\" content=\"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/login\/\" \/>\n<meta property=\"og:site_name\" content=\"AARA - Tradeshow 2026\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/aarausa\" \/>\n<meta property=\"article:modified_time\" content=\"2024-06-27T11:38:41+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@AARA_NJ\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/login\/\",\"url\":\"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/login\/\",\"name\":\"Login - AARA - Tradeshow 2026\",\"isPartOf\":{\"@id\":\"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/#website\"},\"datePublished\":\"2024-06-11T09:09:13+00:00\",\"dateModified\":\"2024-06-27T11:38:41+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/login\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/login\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/login\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Login\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/#website\",\"url\":\"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/\",\"name\":\"AARA - Tradeshow 2025\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/#organization\",\"name\":\"AARA - Tradeshow 2025\",\"url\":\"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/wp-content\/uploads\/2024\/06\/aara_logo-1.png\",\"contentUrl\":\"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/wp-content\/uploads\/2024\/06\/aara_logo-1.png\",\"width\":195,\"height\":70,\"caption\":\"AARA - Tradeshow 2025\"},\"image\":{\"@id\":\"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/aarausa\",\"https:\/\/x.com\/AARA_NJ\",\"https:\/\/www.linkedin.com\/company\/aara-asian-american-retailers-association-\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Login - AARA - Tradeshow 2026","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/login\/","og_locale":"en_US","og_type":"article","og_title":"Login - AARA - Tradeshow 2026","og_url":"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/login\/","og_site_name":"AARA - Tradeshow 2026","article_publisher":"https:\/\/www.facebook.com\/aarausa","article_modified_time":"2024-06-27T11:38:41+00:00","twitter_card":"summary_large_image","twitter_site":"@AARA_NJ","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/login\/","url":"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/login\/","name":"Login - AARA - Tradeshow 2026","isPartOf":{"@id":"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/#website"},"datePublished":"2024-06-11T09:09:13+00:00","dateModified":"2024-06-27T11:38:41+00:00","breadcrumb":{"@id":"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/login\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/login\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/login\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/"},{"@type":"ListItem","position":2,"name":"Login"}]},{"@type":"WebSite","@id":"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/#website","url":"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/","name":"AARA - Tradeshow 2025","description":"","publisher":{"@id":"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/#organization","name":"AARA - Tradeshow 2025","url":"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/#\/schema\/logo\/image\/","url":"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/wp-content\/uploads\/2024\/06\/aara_logo-1.png","contentUrl":"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/wp-content\/uploads\/2024\/06\/aara_logo-1.png","width":195,"height":70,"caption":"AARA - Tradeshow 2025"},"image":{"@id":"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/aarausa","https:\/\/x.com\/AARA_NJ","https:\/\/www.linkedin.com\/company\/aara-asian-american-retailers-association-"]}]}},"ticketed":false,"_links":{"self":[{"href":"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/wp-json\/wp\/v2\/pages\/7424","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/wp-json\/wp\/v2\/comments?post=7424"}],"version-history":[{"count":3,"href":"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/wp-json\/wp\/v2\/pages\/7424\/revisions"}],"predecessor-version":[{"id":7784,"href":"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/wp-json\/wp\/v2\/pages\/7424\/revisions\/7784"}],"wp:attachment":[{"href":"https:\/\/7bg.598.mytemp.website\/tradeshow-2025\/wp-json\/wp\/v2\/media?parent=7424"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}