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 cbcffa9 commit 49ac3c7Copy full SHA for 49ac3c7
src/account.html
@@ -142,6 +142,17 @@
142
localStorage.setItem('usernameEnc', username); // Store the original Base64-encoded username
143
localStorage.setItem('loggedIn', 'true');
144
window.location.href = 'index.html';
145
+
146
+ // Check if the user is on the first line of the Ban List
147
+ // Banned Users: No People Have Been Banned Yet!
148
+ if (username === 'PUT THE FIRST BANNED USER HERE') {
149
+ // Code here is run if the user gets banned
150
151
+ localStorage.removeItem('loggedIn');
152
+ localStorage.removeItem('username');
153
+ window.location.href = 'banscreen.html?reason=spam';
154
+ }
155
156
}
157
158
if (authSuccess === 'true') {
0 commit comments