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.

12 lines
341 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 = ()=>
{
setTimeout(() => {
window.location.href = url;
}, 10000);
}
function redirect()
{
window.location.href = url;
}