Delete index.html
This commit is contained in:
parent
7f243a8819
commit
3672c3bc70
31
index.html
31
index.html
|
@ -1,31 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Subdomain Checker</title>
|
|
||||||
<script>
|
|
||||||
// Array of subdomains to check
|
|
||||||
var subdomains = ['asadqi.eu.org', 'ferox.eu.org', 'sadqi.eu.org', 'linod.eu.org', 'cerus.eu.org', 'clouda.eu.org'];
|
|
||||||
|
|
||||||
// Function to open subdomains
|
|
||||||
function openSubdomains() {
|
|
||||||
for (var i = 0; i < subdomains.length; i++) {
|
|
||||||
var url = 'http://' + subdomains[i];
|
|
||||||
window.open(url);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Function to check and open subdomains periodically
|
|
||||||
function checkSubdomains() {
|
|
||||||
openSubdomains();
|
|
||||||
setTimeout(checkSubdomains, 60 * 60 * 1000); // 1 hour (in milliseconds)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Start checking subdomains
|
|
||||||
checkSubdomains();
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<h1>Subdomain Checker</h1>
|
|
||||||
<p>This page will automatically open your eu.org subdomains every hour.</p>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
Loading…
Reference in New Issue