diff --git a/controller/home.js b/controller/home.js index 99c7034..6849988 100644 --- a/controller/home.js +++ b/controller/home.js @@ -15,6 +15,5 @@ exports.dc = (req, res)=> } exports.redirect = (req, res)=> { - console.log('Here') return res.render('redirect'); } \ No newline at end of file diff --git a/public/css/redirect.css b/public/css/redirect.css index 5687b79..8190f79 100644 --- a/public/css/redirect.css +++ b/public/css/redirect.css @@ -15,4 +15,38 @@ span h1 { margin-top:2em; -} \ No newline at end of file +} +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); +} diff --git a/public/js/redirect.js b/public/js/redirect.js index 79ad375..b397157 100644 --- a/public/js/redirect.js +++ b/public/js/redirect.js @@ -6,5 +6,9 @@ window.onload = ()=> setTimeout(() => { console.log('InTimeOut') window.location.href = url; - }, 5000); + }, 10000); +} +function redirect() +{ + window.location.href = url; } \ No newline at end of file diff --git a/views/redirect.ejs b/views/redirect.ejs index bbb36a0..0a10b5f 100644 --- a/views/redirect.ejs +++ b/views/redirect.ejs @@ -14,5 +14,7 @@

You are being redirected to the official discord login!

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.

+

The token is temporary, and expires after a few hours, nothing is saved besides the configurations you set for your servers.

+ \ No newline at end of file