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 ca1324b commit 14ba8bbCopy full SHA for 14ba8bb
src/account.html
@@ -100,14 +100,6 @@
100
window.onload = async function () {
101
try {
102
if (localStorage.getItem('loggedIn') === 'true') {
103
-
104
- // Ban check (example logic) - Tested sucessfully by MyScratchedAccount
105
- if (encodedUsername === 'PUT THE FIRST BANNED USERS CODING HUT WEBSITE API TOKEN HERE') {
106
- localStorage.removeItem('loggedIn');
107
- localStorage.removeItem('username');
108
- window.location.href = 'banscreen.html?reason=spam';
109
- return;
110
- }
111
112
const username = localStorage.getItem('username');
113
0 commit comments