Added buffer page with a disclaimer about what is collected from the user's discord account.

master
Cristiano Pires 1 year ago
parent c541d812d1
commit 4b9b329b32

@ -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');
}

@ -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;
}

@ -0,0 +1,4 @@
function redirect()
{
window.location.href = window.location.origin + '/redirect';
}

@ -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);
}

@ -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));

@ -6,6 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="shortcut icon" href="images/favicon.ico"/>
<title>Rem-chan at your service</title>
<script type="text/javascript" src="js/index.js"></script>
<link rel="stylesheet" type="text/css" href="css/index.css" id="pagesheet"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
</head>
@ -16,8 +17,8 @@
</div>
<h1 >Rem-chan</h1>
<div class="LoginBT" >
<a id="login" href="https://discord.com/api/oauth2/authorize?client_id=356104008366030863&redirect_uri=https%3A%2F%2Frem.wordfights.com%2Fdashboard&response_type=token&scope=identify%20guilds" class=" ">
<div class="LoginBT" onclick="redirect()">
<a id="login" href="/redirect" class=" ">
<span>Login</span>
</a>
</div>

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8"/>
<meta name="generator" content="2018.1.0.386"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="shortcut icon" href="images/favicon.ico"/>
<title>Rem-chan at your service</title>
<script type="text/javascript" src="js/redirect.js"></script>
<link rel="stylesheet" type="text/css" href="css/redirect.css" id="pagesheet"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
</head>
<body>
<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>
</body>
</html>
Loading…
Cancel
Save