Astroport.ONE/templates/index.http

103 lines
2.3 KiB
Plaintext
Raw Normal View History

2022-10-21 22:05:26 +02:00
HTTP/1.1 200 OK
2022-11-02 15:12:21 +01:00
Access-Control-Allow-Origin: *
2022-10-30 01:39:30 +02:00
Access-Control-Allow-Credentials: true
Access-Control-Allow-Methods: GET
Server: Astroport
Content-Type: text/html; charset=UTF-8
2022-10-21 18:28:35 +02:00
<!doctype html>
<html>
2022-10-05 01:18:11 +02:00
<head>
<meta http-equiv="refresh" content="30; url='http://127.0.0.1:12345'" />
2022-10-21 21:09:15 +02:00
<style>
2022-10-29 19:18:45 +02:00
#reduce42 {
width:42%;
height:42%;
2022-10-21 21:09:15 +02:00
}
2022-10-30 02:21:20 +01:00
#yellow {
2022-10-30 01:59:11 +02:00
background: yellow;
position: absolute;
2022-10-30 02:21:20 +01:00
top: 40%;
left: 60%;
visibility: hidden;
2022-10-30 01:59:11 +02:00
}
2022-11-06 11:41:33 +01:00
input[type=submit] {
width: 12em; height: 4em;
}
#countdown {
display: flex;
justify-content: center;
align-items: center;
color: #0e2c4c;
font-size: 20px;
width: 60px;
height: 60px;
background-color: #e7d9fc;
border-radius: 50%;
}
2022-10-21 21:09:15 +02:00
</style>
2022-10-30 02:21:20 +01:00
2022-12-09 22:26:39 +01:00
<title>[Astroport] - IPFS BIOS - G1 / Ŋ1 - Confidence Networks (_HOSTNAME_)</title>
2022-10-30 02:21:20 +01:00
2022-10-05 01:18:11 +02:00
</head>
<body>
2022-10-30 01:39:30 +02:00
<center>
2022-12-09 22:26:39 +01:00
<h2>IPFS BIOS<br> - Astroport Ŋ1 Explorer -</h2>
2022-10-30 01:59:11 +02:00
<div id="yellow">
2022-12-10 22:03:55 +01:00
<h3><a href="http://127.0.0.1:12345"> >>> BunkerBOX (◕‿‿◕) Ready <<< </a></h3>
2022-10-30 01:00:39 +02:00
</div>
2022-10-30 02:21:20 +01:00
<br>
2022-11-05 23:39:07 +01:00
<a href="http://127.0.0.1:8080/ipns/_IPFSNODEID_" target="json" alt="Station Stomac"><img width=320 height=240 src='http://127.0.0.1:8080/ipfs/QmYjPCvbwTcvEpjvrcryCAAE1Ui73rsbJGbtZXpniddKDj' id='API'/></a>
2022-11-06 11:41:33 +01:00
<br>
<form action = "http://127.0.0.1:1234" method = "GET">
<br>
<h2>
2022-12-09 19:10:45 +01:00
INSCRIPTION<br><br>
2022-11-06 11:41:33 +01:00
Phrase Une : <input name=salt value=''></br>
Phrase Deux : <input name=pepper value=''></br>
2022-12-09 22:26:39 +01:00
TW <input type="hidden" id="g1pub" name="g1pub" value="on"></br>
2022-12-09 19:10:45 +01:00
Email : <input name=email value=''></br>
2022-11-07 11:20:15 +01:00
</br>
2022-11-06 11:41:33 +01:00
<input type='submit' value='[(♥‿‿♥)]'>
2022-11-06 11:41:33 +01:00
</h2>
2022-11-07 11:20:15 +01:00
<div id="countdown"></div>
2022-11-06 11:41:33 +01:00
</form>
<br>
2022-11-05 23:39:07 +01:00
<p>
<b>Besoin d'aide ? Contactez support@qo-op.com</b>
</p>
2022-10-30 02:21:20 +01:00
</center>
<script>
const el = document.getElementById('yellow');
setTimeout(() => {
el.style.visibility = 'visible';
}, 3000); // 👈️ delay in milliseconds
2022-12-25 14:20:32 +01:00
var timeLeft = 2524608000;
var elem = document.getElementById('countdown');
var timerId = setInterval(countdown, 1000);
function countdown() {
if (timeLeft == -1) {
clearTimeout(timerId);
doSomething();
} else {
elem.innerHTML = timeLeft + ' s';
timeLeft--;
}
}
</script>
2022-10-30 02:21:20 +01:00
</body>
</html>