We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 950217a commit fd3c4deCopy full SHA for fd3c4de
src/account.html
@@ -148,7 +148,7 @@
148
localStorage.setItem('usernameEnc', encodedUsername); // encoded version
149
localStorage.setItem('username', plainUsername); // plain version
150
localStorage.setItem('loggedIn', 'true');
151
- window.location.href = 'index.html';
+ window.location.href = 'account.html';
152
} catch (err) {
153
console.error('Token verification failed:', err);
154
}
@@ -164,7 +164,7 @@
164
localStorage.setItem('usernameEnc', devKey); // Store the original Base64-encoded username
165
localStorage.setItem('username', username); // Store the original Base64-encoded username
166
167
+ window.location.href = 'account.html'
168
169
170
0 commit comments