https://mycyberadvantage.com.au/

Submitted URL:
https://mycyberadvantage.com.au/
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 9 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

Console log messages · 1 found

Messages logged to the web console

HTML

The raw HTML body of the page

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>My Cyber Advantage - Cybersecurity Solutions</title>
    
    <!-- Include Open Sans Font -->
    <link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&amp;display=swap" rel="stylesheet">
    <!-- Add Google Font for Source Sans Pro -->
    <link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&amp;display=swap" rel="stylesheet">

    <!-- Bootstrap CSS -->
    <link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
    <!-- jQuery (Required for Bootstrap's JavaScript plugins) -->
    <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
    <!-- Popper.js (Required for Bootstrap dropdowns, popovers, etc.) -->
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.1/umd/popper.min.js"></script>
    <!-- Bootstrap JS (Ensure the same version as CSS) -->
    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>

    <!-- Include existing styles -->
    <link rel="stylesheet" href="styles.css">
</head>
<body>

    <!-- Logo Section -->
    <div class="logo-container">
        <a class="navbar-brand" href="#">
            <img src="images/mca-logo.png" alt="My Cyber Advantage Logo" class="logo-img">
        </a>
    </div>

<!-- Navigation -->
<nav class="navbar navbar-expand-lg custom-navbar">
    <div class="container">
        <!-- Toggle Button for Mobile View -->
        <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
            <span class="navbar-toggler-icon"></span>
            <span class="navbar-toggler-icon"></span>
            <span class="navbar-toggler-icon"></span>
        </button>

        <!-- Collapsible Navbar Content -->
        <div class="collapse navbar-collapse" id="navbarNav">
            <!-- Navigation Links -->
            <ul class="navbar-nav">
                <li class="nav-item">
                    <a class="nav-link" href="#home">Home</a>
                </li>
                <li class="nav-item">
                    <a class="nav-link" href="#services">Services</a>
                </li>
                <li class="nav-item">
                    <a class="nav-link" href="#about">About</a>
                </li>
                <li class="nav-item">
                    <a class="nav-link" href="#contact">Contact</a>
                </li>
            </ul>
        </div>
    </div>
</nav>

    <!-- Hero Section -->
    <section id="home" class="hero">
        <div class="hero-content">
            <h1>Cybersecurity Health Check</h1>
            <p>Gain clarity on your cybersecurity posture and take the steps needed to secure your business with My Cyber Advantage.</p>
            <a href="#services" class="cta-button">Learn More</a>
        </div>
    </section>

    <!-- Services Section -->
    <section id="services" class="services">
        <div class="container">
            <h2>Our Services</h2>
            <div class="service-cards">
                <div class="service-card">
                    <h3>Cybersecurity Health Check</h3>
                    <p>A comprehensive evaluation of your current cybersecurity defenses, identifying gaps and providing actionable recommendations to secure your business.</p>
                    <!-- <a href="cybersecurity-health-check.html" class="cta-button">Learn More</a> -->
                </div>
                <div class="service-card">
                    <h3>Risk Management Strategy</h3>
                    <p>Develop a tailored risk management strategy that aligns with your business goals and reduces exposure to cyber threats.</p>
                </div>
                <div class="service-card">
                    <h3>Incident Response Planning</h3>
                    <p>Prepare your business for potential cyber incidents with our expert-led incident response planning and simulation exercises.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- About Section -->
    <section id="about" class="about">
        <div class="container">
            <h2>About Us</h2>
            <p>At My Cyber Advantage, we specialise in empowering small to medium-sized businesses with robust cybersecurity solutions. Our team of experts provides comprehensive assessments, strategic advice, and hands-on support to help you navigate the complexities of cybersecurity.</p>
        </div>
    </section>

    <!-- Contact Section -->
    <section id="contact" class="contact">
        <div class="container">
            <h2>Contact Us</h2>
            <p>Get in touch with us to learn more about our cybersecurity services and how we can help secure your business.</p>
            <form id="contact-form" class="contact-form">
                <input type="text" name="name" placeholder="Your Name" required="">
                <input type="email" name="email" placeholder="Your Email" required="">
                <textarea name="message" placeholder="Your Message" rows="5" required=""></textarea>

                <!-- Cloudflare Turnstile widget -->
                <div class="cf-turnstile" data-sitekey="0x4AAAAAAAjpPdcNO9IiSYgy"><div><input type="hidden" name="cf-turnstile-response" id="cf-chl-widget-pp30n_response"></div></div>

                <button type="submit">Send Message</button>
            </form>
        </div>
    </section>

    <!-- Footer -->
    <footer class="footer">
        <div class="container">
            <p>© 2024 My Cyber Advantage. All rights reserved.</p>
        </div>
    </footer>

    <!-- Include the Turnstile JavaScript before the closing </body> tag -->
    <script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async="" defer=""></script>

    <!-- JavaScript to handle the hamburger button toggle -->
    <script>
        document.addEventListener('DOMContentLoaded', function () {
            const toggler = document.querySelector('.navbar-toggler');

            toggler.addEventListener('click', function () {
                this.classList.toggle('open'); // Toggle the 'open' class for the animation
            });
        });
    </script>

    <!-- JavaScript to handle form submission -->
    <script>
        document.getElementById('contact-form').addEventListener('submit', async function (e) {
            e.preventDefault(); // Prevent the default form submission

            const form = e.target;
            const formData = new FormData(form);
            const submitButton = form.querySelector('button[type="submit"]');

            // Disable the submit button to prevent multiple submissions and change the text to "Sending..."
            submitButton.disabled = true;
            submitButton.textContent = 'Sending...';

            // Collect additional information
            formData.append('screen_resolution', window.screen.width + 'x' + window.screen.height);
            formData.append('device_type', /Mobi|Android/i.test(navigator.userAgent) ? 'Mobile' : 'Desktop');
            formData.append('time_on_page', Math.floor(performance.now() / 1000));
            formData.append('session_id', crypto.randomUUID());
            formData.append('local_time', new Date().toLocaleString());
            formData.append('js_enabled', true);
            formData.append('cookies_enabled', navigator.cookieEnabled);

            // Send form data to the server
            const response = await fetch('/submit-form', {
                method: 'POST',
                body: formData,
            });

            const result = await response.json(); // Expect JSON response from server

            // Update the button text based on response
            if (response.ok && result.message) {
                submitButton.textContent = 'Form Submitted Successfully!';
                // Button remains disabled with success message
            } else {
                submitButton.textContent = 'Send Message'; // Revert to original state if there was an error
                submitButton.disabled = false;
                alert(result.message || 'An error occurred. Please try again.'); // Show alert for error
            }
        });
    </script>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon="{&quot;rayId&quot;:&quot;8d3e317dbbf7385d&quot;,&quot;version&quot;:&quot;2024.10.1&quot;,&quot;serverTiming&quot;:{&quot;name&quot;:{&quot;cfExtPri&quot;:true,&quot;cfL4&quot;:true,&quot;cfSpeedBrain&quot;:true,&quot;cfCacheStatus&quot;:true}},&quot;token&quot;:&quot;1272cf5b974843e19c7a0656d5d47aff&quot;,&quot;b&quot;:1}" crossorigin="anonymous"></script>

</body></html>