Stand/stand.gg/keymaster/script.js
2024-10-16 11:20:42 +08:00

9 lines
201 B
JavaScript

if (localStorage.getItem("account_id") === null)
{
location.href = "/account/";
}
else
{
document.querySelectorAll("input[name='auth']").forEach(e => e.value = localStorage.getItem("account_id"));
}