12 lines
341 B
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;
|
|
} |