- Scan ID:
- 58e55b17-cea1-446d-a046-29a9b1df5888Finished
- Submitted URL:
- https://mrbuf.mzvuhpbfknx.info/
- Report Finished:
Links · 0 found
The outgoing links identified from the page
JavaScript Variables · 5 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
Name | Type |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
updateCountdown | function |
submitForm | function |
Console log messages · 1 found
Messages logged to the web console
Type | Category | Log |
---|---|---|
error | network |
|
HTML
The raw HTML body of the page
<!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>