You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
344 B
10 lines
344 B
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);
|
|
} |