Clear Logs; More Info; Button to skip

master
Cristiano Pires 1 year ago
parent 4b9b329b32
commit ba70719959

@ -15,6 +15,5 @@ exports.dc = (req, res)=>
} }
exports.redirect = (req, res)=> exports.redirect = (req, res)=>
{ {
console.log('Here')
return res.render('redirect'); return res.render('redirect');
} }

@ -15,4 +15,38 @@ span
h1 h1
{ {
margin-top:2em; margin-top:2em;
} }
button
{
width: 130px;
height: 40px;
color: #fff;
border-radius: 5px;
padding: 10px 25px;
font-family: 'Lato', sans-serif;
font-weight: 500;
background: transparent;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
display: inline-block;
box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
7px 7px 20px 0px rgba(0,0,0,.1),
4px 4px 5px 0px rgba(0,0,0,.1);
outline: none;
border-radius: 5px;
margin: 20px;
background: rgb(21, 17, 216);
background: linear-gradient(0deg, rgba(21, 17, 216) 0%, rgb(5, 134, 240) 100%);
border: none;
}
button:before {
height: 0%;
width: 2px;
}
button:hover {
box-shadow: 4px 4px 6px 0 rgba(255,255,255,.5),
-4px -4px 6px 0 rgba(116, 125, 136, .5),
inset -4px -4px 6px 0 rgba(255,255,255,.2),
inset 4px 4px 6px 0 rgba(0, 0, 0, .4);
}

@ -6,5 +6,9 @@ window.onload = ()=>
setTimeout(() => { setTimeout(() => {
console.log('InTimeOut') console.log('InTimeOut')
window.location.href = url; window.location.href = url;
}, 5000); }, 10000);
}
function redirect()
{
window.location.href = url;
} }

@ -14,5 +14,7 @@
<body> <body>
<h1> You are being redirected to the <span>official discord</span> login!</h1> <h1> You are being redirected to the <span>official discord</span> login!</h1>
<h2>We can't see your credentials, after you login we receive a token that links you to the servers you own/admin, your avatar and your public name.</h2> <h2>We can't see your credentials, after you login we receive a token that links you to the servers you own/admin, your avatar and your public name.</h2>
<h3>The token is temporary, and expires after a few hours, nothing is saved besides the configurations you set for your servers.</h3>
<button onclick="redirect()">Redirect</button>
</body> </body>
</html> </html>
Loading…
Cancel
Save