<script>
<!DOCTYPE html>
<html>
<head>
<title>Email Scanner</title>
<script>
function performScan() {
var email = document.getElementById('emailInput').value;
// Display "Scanning" notice for 10 seconds
var scanningNotice = document.createElement('div');
scanningNotice.textContent = 'Scanning';
document.body.appendChild(scanningNotice);
setTimeout(function() {
scanningNotice.style.display = 'none'; // Hide "Scanning" notice after 10 seconds
// Display popup response after 10 seconds
var response = "We have detected your email in multiple locations online";
alert(response);
// Display "Take Action Now" button
var actionButton = document.createElement('button');
actionButton.textContent = 'Take Action Now';
actionButton.onclick = function() {
// Replace with your action code when the button is clicked
// For example: Redirect to another page or perform an action
alert('Taking action now...'); // Displaying an alert as an example
};
document.body.appendChild(actionButton);
}, 10000); // 10 seconds timeout
}
</script>
</head>
<body>
<h2>Email Scanner</h2>
<p>Enter your email address:</p>
<input type="text" id="emailInput" placeholder="Your email address">
<br><br>
<button onclick="performScan()">Enter</button>
</body>
</html>
<script>
Are Your Passwords on the Dark Web?
Try our free dark web scan to assess your cyber risk.
Enter a valid email
We do not store, save, or sell your email address.
By completing this form, you accept the DarkWebScanTerms of Use.