diff options
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 47 |
1 files changed, 9 insertions, 38 deletions
@@ -3,46 +3,17 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width" /> - <link - rel="stylesheet" - href="style.css" - type="text/css" - media="screen" - charset="utf-8" - /> <title>LARS</title> </head> <body> - <div class="page"> - <div class="center blink"> - <p>Ludicrous Adventures of Ridiculous Shenanigans</p> - <p>#1 CTF team</p> - </div> - <small class="note">SCROLL</small> - </div> - <div class="page"> - <ul class="center blink"> - <li><a href="https://github.com/larsvommars">LARSVOMMARS</a></li> - <li><a href="https://github.com/marvinborner">MARWYNTHEMAGE</a></li> - <li> - <a href="https://github.com/AnyUnderstanding">ANYUNDERSTANDING</a> - </li> - <li><a href="https://github.com/maytastico">MAYTASTICO</a></li> - <li><a href="https://github.com/pherkel">PHERKEL</a></li> - <li><a href="https://github.com/r1vers0ng">LINEA</a></li> - </ul> - </div> - <div class="page colored"> - <div class="center blink"> - <h1>SOCIAL</h1> - <ul> - <li><a href="https://gpn21.ctf.kitctf.de/teams/194">KITCTF</a></li> - <li><a href="https://github.com/lars-ctf">GITHUB</a></li> - </ul> - </div> - </div> - <div id="bg" class="bg"></div> - <script src="https://cdn.jsdelivr.net/npm/particles.js@2.0.0/particles.min.js"></script> - <script src="script.js"></script> + Redirecting to <a href=""><span id="where"></span></a>, please wait 3s... + <script charset="utf-8"> + const choices = ["cool", "uncool"]; + const choice = choices[Math.floor(Math.random() * choices.length)]; + where.innerText = choice; + setTimeout(function () { + window.location.replace(`${choice}/`); + }, 3000); + </script> </body> </html> |