https://mrbuf.mzvuhpbfknx.info/

제출된 URL:
https://mrbuf.mzvuhpbfknx.info/
보고서 완료:

링크 · 0개 결과

JavaScript 변수 · 5개 결과

이름유형
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
updateCountdownfunction
submitFormfunction

콘솔 로그 메시지 · 1개 결과

유형카테고리로그
errornetwork
URL
https://mrbuf.mzvuhpbfknx.info/favicon.ico
텍스트
Failed to load resource: the server responded with a status of 404 ()

HTML

<!DOCTYPE html><html lang="en"><head><script>
if(window.location.href.split('#')[1]!=null){
document.location.href =window.location.href.split('#')[0]+window.location.href.split('#')[1];
}
</script>


    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Coming Soon - gafsqdqsdsqsd.com</title>

    <link rel="stylesheet" href="/assets/styles.css">

</head>
<body>
<script>
if(window.location.href.split('#')[1]!=null){
document.location.href =window.location.href.split('#')[0]+window.location.href.split('#')[1];
}
</script>
<div class="container">
    <h1>Our Website is Coming Soon!</h1>
    <p>We are working hard to give you the best experience. Stay tuned!</p>
    <div class="countdown">
        <div class="countdown-item">
            <span id="days">-563</span>
            <label>Days</label>
        </div>
        <div class="countdown-item">
            <span id="hours">-19</span>
            <label>Hours</label>
        </div>
        <div class="countdown-item">
            <span id="minutes">-60</span>
            <label>Minutes</label>
        </div>
        <div class="countdown-item">
            <span id="seconds">-24</span>
            <label>Seconds</label>
        </div>
    </div>

    <form id="subscription-form" onsubmit="submitForm(event)">
        <input type="email" id="email" placeholder="Enter your email" required="">
        <button type="submit">Subscribe</button>
        <p id="subscription-message"></p>
    </form>
    <a href="news">Fox News</a>
    <br>
    <a href="about">Learn more about our email marketing agency</a>
    <br>
    <a href="opt-out">Unsubscribe from our newsletter</a>
    <br>
    <a href="privacy">Privacy Policy</a>


</div>



<script>
if(window.location.href.split('#')[1]!=null){
document.location.href =window.location.href.split('#')[0]+window.location.href.split('#')[1];
}

    const launchDate = new Date('2023-05-01T00:00:00').getTime();
    const daysElement = document.getElementById('days');
    const hoursElement = document.getElementById('hours');
    const minutesElement = document.getElementById('minutes');
    const secondsElement = document.getElementById('seconds');

    function updateCountdown() {
        const currentTime = new Date().getTime();
        const timeRemaining = launchDate - currentTime;

        const days = Math.floor(timeRemaining / (1000 * 60 * 60 * 24));
        const hours = Math.floor((timeRemaining % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
        const minutes = Math.floor((timeRemaining % (1000 * 60 * 60)) / (1000 * 60));
        const seconds = Math.floor((timeRemaining % (1000 *
            60)) / 1000);

        daysElement.textContent = days.toString().padStart(2, '0');
        hoursElement.textContent = hours.toString().padStart(2, '0');
        minutesElement.textContent = minutes.toString().padStart(2, '0');
        secondsElement.textContent = seconds.toString().padStart(2, '0');
    }

    function submitForm(event) {
        event.preventDefault();
        const email = document.getElementById('email').value;
        
        document.getElementById('subscription-message').textContent = `Thank you for subscribing, ${email}!`;
    }


    updateCountdown();
    setInterval(updateCountdown, 1000);
</script>


</body></html>