403 fix
This commit is contained in:
parent
c6fdee77ba
commit
48194def6a
|
|
@ -0,0 +1,16 @@
|
|||
var time = 5;
|
||||
|
||||
function redirect() {
|
||||
window.location.replace("https://morblox.us");
|
||||
}
|
||||
|
||||
function countdown() {
|
||||
if (time > 0) {
|
||||
time--;
|
||||
document.getElementById('timeElement').innerHTML = time;
|
||||
console.log(time);
|
||||
}
|
||||
}
|
||||
|
||||
setInterval(countdown, 1000);
|
||||
setTimeout(redirect, 5000);
|
||||
|
|
@ -14,6 +14,7 @@
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}">
|
||||
<link rel="stylesheet" href="{{ asset('css/app.css') }}">
|
||||
<script src="{{ asset('js/403.js') }}"></script>
|
||||
</head>
|
||||
<body>
|
||||
<ul></ul>
|
||||
|
|
@ -25,7 +26,7 @@
|
|||
<div class="content_signup">
|
||||
<h2>403 Forbidden</h2>
|
||||
<p>OH SHIT WHAT HAVE YOU DONE GO BACK NOW BEFORE LUIGI KILLS US ALL!!!!!!</p>
|
||||
<p>Luigi: I AM GOING TO KILL EVERYONE IN {{ #a timer counts down to 0 here, when it reaches 0 redirect the client }}!</p>
|
||||
<p>Luigi: I AM GOING TO KILL EVERYONE IN <span id="timeElement">5</span></p>
|
||||
<img alt="Angry Luigi" src="{{ asset('img/error.png') }}" width="100%" height="max-content">
|
||||
</div>
|
||||
<div id="footer_signup">
|
||||
|
|
|
|||
Loading…
Reference in New Issue