UPLANET is looped with htpps://qo-op.com

This commit is contained in:
fred 2023-09-02 03:19:07 +02:00
parent 34c6383ce6
commit 4e5d206b64
2 changed files with 24 additions and 8 deletions

View File

@ -179,8 +179,8 @@ echo "$HTTPCORS
<h1>$LAT/$LON UPlanet common blockchain</h1>
<br>UMAP : <a target=localhost href=http://ipfs.localhost:8080/ipns/${UMAPNS}>http://ipfs.localhost:8080/ipns/${UMAPNS}</a>
<br>CHAIN : <a target=wan href=https://ipfs.copylaradio.com/ipfs/${IPFSROOT}>https://ipfs.copylaradio.com/ipfs/${IPFSROOT}</a>
<br>
<br> Download files containing <bold>$PASS</bold> in their name
<br> <h2><bold>Your PASS is $PASS</bold></h2>
<br> Download files containing in their name
<br> Use G1Station and compatible G1Card QRCode scanner to operate...
<br>
<br><br>${EMAIL} REGISTERED : ${MOATS} : $(date)

View File

@ -69,7 +69,7 @@ header {
<form id="formlink" action = "http://127.0.0.1:1234" method = "GET" enctype="application/x-www-form-urlencoded">
<h1>U Planet</h1>
<h1><a href="https://qo-op.com">U Planet</a></h1>
<span>Email : </span><input name=uplanet value=''></br></br>
<div id="yellow">
@ -84,9 +84,23 @@ header {
<br>
<span>Astroport <a href="https://pad.p2p.legal/s/Astroport.ONE">Ŋ1</a> - Crypto Commons Defender -</span>
<h2>
Click on "yellow face" (wait 1 or 2 minutes if you enter your email)
<p id="station"><div id='countdown'></div></span></p>
<form method='get' action='http://g1billet.localhost:33101' target='aframe'>
<input type='hidden' name='montant' value='0' >
<label for='type'>Type :</label>
<select name='type'>
<option value=''>G1BILLET+ ( x 6 )</option>
<option value='jeu'>G1CARD</option>
<option value='xastro' selected>G1CARD+TW</option>
<option value='@astroport'>G1CARD+@</option>
</select>
<input type='hidden' name='dice' value='4' >&nbsp;&nbsp;&nbsp;&nbsp;
<button type='submit'>more crypto wallets...</button>
</form>
</h2>
<br>
<p id="station"><div id='countdown'>G1Visa registration</div></span></p>
</main>
</body>
<script>
@ -162,16 +176,18 @@ function testLatency(cb) {
let cookies = document.cookie;
console.log(cookies);
var timeLeft = 5;
document.getElementById("countdown").innerHTML = "";
var timeLeft = 42;
var elem = document.getElementById("countdown");
var timerId = setInterval(countdown, 999);
function countdown() {
if (timeLeft == -1) {
clearTimeout(timerId);
document.getElementById("countdown").innerHTML = "<form method='get' action='http://g1billet.localhost:33101' target='aframe'><input type='hidden' name='montant' value='0' ><label for='type'>Type :</label><select name='type'><option value=''>G1BILLET+ ( x 6 )</option><option value='jeu'>G1CARD</option><option value='xastro' selected>G1CARD+TW</option><option value='@astroport'>G1CARD+@</option></select><input type='hidden' name='dice' value='4' >&nbsp;&nbsp;&nbsp;&nbsp;<button type='submit'>more crypto wallets...</button></form>";
elem.innerHTML = "Try to click on the yellow face now !"
} else {
// elem.innerHTML = timeLeft + " s";
elem.innerHTML = timeLeft + " s";
timeLeft--;
}
}