https://unsbscribeme.com/

Submitted URL:
https://unsbscribeme.com/5qDuSl24412YIid10webulkbktm4MWZEAHCRSNSHLBM2787753FJXO136J9/Redirected
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 14 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 · 0 found

Messages logged to the web console

HTML

The raw HTML body of the page

<!DOCTYPE html><html><head><meta http-equiv="origin-trial" content="A/kargTFyk8MR5ueravczef/wIlTkbVk1qXQesp39nV+xNECPdLBVeYffxrM8TmZT6RArWGQVCJ0LRivD7glcAUAAACQeyJvcmlnaW4iOiJodHRwczovL2dvb2dsZS5jb206NDQzIiwiZmVhdHVyZSI6IkRpc2FibGVUaGlyZFBhcnR5U3RvcmFnZVBhcnRpdGlvbmluZzIiLCJleHBpcnkiOjE3NDIzNDIzOTksImlzU3ViZG9tYWluIjp0cnVlLCJpc1RoaXJkUGFydHkiOnRydWV9">
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Unsubscribe</title>
    <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
    <style>
        body {
            background: #f0f0f1;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
        }

        .form-container {
            box-shadow: -5px 0px 15px -3px rgba(0, 0, 0, 0.1);
            padding: 20px;
            border-radius: 20px;
            background-color: #fff;
            margin-top: 10px;
            width: 100%;
            max-width: 500px;
        }

        @media (min-width: 768px) {
            .form-container {
                padding: 30px;
                margin-top: 0;
            }
        }

        input, textarea {
            padding: 10px 20px;
            color: #1E266D;
            width: 100%;
            background: #F5FAFF !important;
            border: 1px solid #EEF1FF;
            border-radius: 5px;
            margin-bottom: 15px;
        }

        .sub_btn {
            padding: 11px 25px;
            font-size: 13px;
            font-weight: 500;
            text-transform: uppercase;
            color: #fff;
            background-color: #d72924;
            border: none;
            border-radius: 5px;
            box-shadow: 0 1px 100px 0 #ea0d0d inset;
        }

        #subloader {
            display: none;
        }
    </style>
    <script type="text/javascript" async="" charset="utf-8" src="https://www.gstatic.com/recaptcha/releases/xds0rzGrktR88uEZ2JUvdgOY/recaptcha__en.js" crossorigin="anonymous" integrity="sha384-LsgFz6D3IXKi1Rzqj4uhSQDNZOj1dcZCWxIrJG5IYGWvpJ304xZdrK8AxV/LlQPB"></script><script src="https://code.jquery.com/jquery-3.6.1.min.js"></script>
    <script src="https://www.google.com/recaptcha/api.js" async="" defer=""></script>
    <script>
        $(document).on('submit', '#userForm', function(e) {
            e.preventDefault();
            var regEmail = /^[A-Z0-9._%+-]+@([A-Z0-9-]+\.)+[A-Z]{2,4}$/i;
            var email = $('#email').val();
            if (email.trim() == '') {
                $('#emailError').text('Please enter email.').removeClass('hidden');
                $('#email').focus();
                return false;
            } else if (email.trim() != '' && !regEmail.test(email)) {
                $('#emailError').text('Please enter a valid email.').removeClass('hidden');
                $('#email').focus();
                return false;
            } else {
                $.ajax({
                    method: "POST",
                    url: "unsubscribe.php",
                    data: $(this).serialize() + "&sub_process=true", // Ensure sub_process is included
                    beforeSend: function() {
                        $("#subloader").show();
                    },
                    success: function(data) {
                        $('#msgsub').html(data);
                        $("#subloader").hide();
                        $('#userForm').find('input').val('');
                        $('#userForm').find('textarea').val('');
                        $('#form_area').hide();
                    },
                    error: function(xhr, status, error) {
                        console.error(xhr.responseText); // Log any error response for debugging
                    }
                });
            }
        });
    </script>
</head>
<body>
    <div class="form-container">
        <h2 class="text-center">Unsubscribe From All Emails</h2>
        <p id="msgsub" style="text-align: center;"></p>
        <div id="form_area">
            <form id="userForm" method="POST">
                <input type="text" name="email" id="email" class="form-control" placeholder="Enter Your Email.." required="">
                <span class="text-danger hidden" id="emailError"></span>
                <textarea name="reason" id="reason" class="form-control" placeholder="Please tell us why you're unsubscribing..." required=""></textarea>
                <div class="g-recaptcha" data-sitekey="6Ldh2vspAAAAAOjXZZKWW4fv7rfN_7gdH_ooxgtF"><div style="width: 304px; height: 78px;"><div><iframe title="reCAPTCHA" width="304" height="78" role="presentation" name="a-81yfoyydydvq" frameborder="0" scrolling="no" sandbox="allow-forms allow-popups allow-same-origin allow-scripts allow-top-navigation allow-modals allow-popups-to-escape-sandbox allow-storage-access-by-user-activation" src="https://www.google.com/recaptcha/api2/anchor?ar=1&amp;k=6Ldh2vspAAAAAOjXZZKWW4fv7rfN_7gdH_ooxgtF&amp;co=aHR0cHM6Ly91bnNic2NyaWJlbWUuY29tOjQ0Mw..&amp;hl=en&amp;v=xds0rzGrktR88uEZ2JUvdgOY&amp;size=normal&amp;cb=so015zy4oysd"></iframe></div><textarea id="g-recaptcha-response" name="g-recaptcha-response" class="g-recaptcha-response" style="width: 250px; height: 40px; border: 1px solid rgb(193, 193, 193); margin: 10px 25px; padding: 0px; resize: none; display: none;"></textarea></div><iframe style="display: none;"></iframe></div>
                <center>
                    <button name="sub_process" class="sub_btn btn btn-primary" id="subscribeButton">Unsubscribe</button>
                    <img src="loader.gif" height="auto" width="50" id="subloader">
                </center>
            </form>
        </div>
    </div>


<div style="background-color: rgb(255, 255, 255); border: 1px solid rgb(204, 204, 204); box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 3px; position: absolute; transition: visibility 0s linear 0.3s, opacity 0.3s linear 0s; opacity: 0; visibility: hidden; z-index: 2000000000; left: 0px; top: -10000px;"><div style="width: 100%; height: 100%; position: fixed; top: 0px; left: 0px; z-index: 2000000000; background-color: rgb(255, 255, 255); opacity: 0.05;"></div><div class="g-recaptcha-bubble-arrow" style="border: 11px solid transparent; width: 0px; height: 0px; position: absolute; pointer-events: none; margin-top: -11px; z-index: 2000000000;"></div><div class="g-recaptcha-bubble-arrow" style="border: 10px solid transparent; width: 0px; height: 0px; position: absolute; pointer-events: none; margin-top: -10px; z-index: 2000000000;"></div><div style="z-index: 2000000000; position: relative;"><iframe title="recaptcha challenge expires in two minutes" name="c-81yfoyydydvq" frameborder="0" scrolling="no" sandbox="allow-forms allow-popups allow-same-origin allow-scripts allow-top-navigation allow-modals allow-popups-to-escape-sandbox allow-storage-access-by-user-activation" src="https://www.google.com/recaptcha/api2/bframe?hl=en&amp;v=xds0rzGrktR88uEZ2JUvdgOY&amp;k=6Ldh2vspAAAAAOjXZZKWW4fv7rfN_7gdH_ooxgtF" style="width: 100%; height: 100%;"></iframe></div></div></body></html>