first commit

This commit is contained in:
adrian
2025-12-04 21:21:30 +01:00
commit 3dd6b3ff36
2124 changed files with 338827 additions and 0 deletions

11
index.js Normal file
View File

@ -0,0 +1,11 @@
function re_direct () {
const user_name = document.getElementById('username').value.trim();
const session_id = document.getElementById('session_id').value.trim();
const encodedUser = encodeURIComponent(user_name);
const encodedSession = encodeURIComponent(session_id);
window.location.href = `/${encodedSession}/${encodedUser}`;
}