diff --git a/controller/home.js b/controller/home.js index 5966cd9..99c7034 100644 --- a/controller/home.js +++ b/controller/home.js @@ -12,4 +12,9 @@ exports.addtodiscord = (req, res)=> exports.dc = (req, res)=> { return res.redirect('https://www.discord.gg/yABaDAv') +} +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 new file mode 100644 index 0000000..5687b79 --- /dev/null +++ b/public/css/redirect.css @@ -0,0 +1,18 @@ +body +{ + background-image:url("https://w.wallhaven.cc/full/mp/wallhaven-mpmoly.png"); + background-size:auto; + background-repeat:no-repeat; + color:#2d0222; + text-align:center; +} +span +{ + text-decoration:underline; + color:#6f0202; +} + +h1 +{ + margin-top:2em; +} \ No newline at end of file diff --git a/public/js/index.js b/public/js/index.js index e69de29..71992c0 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -0,0 +1,4 @@ +function redirect() +{ + window.location.href = window.location.origin + '/redirect'; +} \ No newline at end of file diff --git a/public/js/redirect.js b/public/js/redirect.js new file mode 100644 index 0000000..79ad375 --- /dev/null +++ b/public/js/redirect.js @@ -0,0 +1,10 @@ +const url = "https://discord.com/api/oauth2/authorize?client_id=356104008366030863&redirect_uri=https%3A%2F%2Frem.wordfights.com%2Fdashboard&response_type=token&scope=identify%20guilds" + +window.onload = ()=> +{ + console.log('Loaded'); + setTimeout(() => { + console.log('InTimeOut') + window.location.href = url; + }, 5000); +} \ No newline at end of file diff --git a/routes/routes.js b/routes/routes.js index 85aea3c..2704eea 100644 --- a/routes/routes.js +++ b/routes/routes.js @@ -5,6 +5,7 @@ const api = require('../controller/api.js'); module.exports = (io, bot)=> { router.route('/').get(homeController.home(io)); + router.route('/redirect').get(homeController.redirect) router.route('/api/getUser').post(api.getUser(io)); router.route('/api/getGuildData/').post(api.guildData(io, bot)); router.route('/api/Change/').post(api.updateGuild(io)); diff --git a/views/home.ejs b/views/home.ejs index df5b66d..7b32b38 100644 --- a/views/home.ejs +++ b/views/home.ejs @@ -6,6 +6,7 @@