Skip to content

Commit fd3c4de

Browse files
authored
Update account.html
1 parent 950217a commit fd3c4de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/account.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@
148148
localStorage.setItem('usernameEnc', encodedUsername); // encoded version
149149
localStorage.setItem('username', plainUsername); // plain version
150150
localStorage.setItem('loggedIn', 'true');
151-
window.location.href = 'index.html';
151+
window.location.href = 'account.html';
152152
} catch (err) {
153153
console.error('Token verification failed:', err);
154154
}
@@ -164,7 +164,7 @@
164164
localStorage.setItem('usernameEnc', devKey); // Store the original Base64-encoded username
165165
localStorage.setItem('username', username); // Store the original Base64-encoded username
166166
localStorage.setItem('loggedIn', 'true');
167-
window.location.href = 'index.html';
167+
window.location.href = 'account.html'
168168
}
169169

170170
}

0 commit comments

Comments
 (0)