Skip to content

Commit be67f10

Browse files
authored
Update account.html
1 parent 6904a4b commit be67f10

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/account.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -185,11 +185,11 @@
185185
}
186186

187187
function devToken() {
188-
const usernameEncoded = localStorage.getItem('usernameEnc');
188+
const usernameEnc = localStorage.getItem('usernameEnc');
189189
const username = localStorage.getItem('usernameEnc');
190-
const joined = "Your dev token is:" + username + "- Make sure to only share it with Coding Hut services and partners or else you can get hacked!";
190+
const joined = "Your dev token is:" + usernameEnc + "- Make sure to only share it with Coding Hut services and partners or else you can get hacked!";
191191
devTokens.style.color = "green";
192-
devTokens.textContent = "Your dev token is:" + username + "- Make sure to only share it with Coding Hut services and partners or else you can get hacked!";
192+
devTokens.textContent = "Your dev token is:" + usernameEnc + "- Make sure to only share it with Coding Hut services and partners or else you can get hacked!";
193193
}
194194
</script>
195195
</head>
@@ -212,14 +212,15 @@ <h2 id="welcomeMessage"></h2>
212212
<h2>For You</h2>
213213
<button onclick="strikeinfo()">Strikes Received From Coding Hut</button>
214214
</div>
215-
215+
<!-- DO NOT DELETE MY AUTH TOKEN SYSTEM -->
216216
<div class="container">
217217
<h2>Developer Tokens</h2>
218218
<h3>Used for linking Scratch account to forums account</h3>
219219
<p id="devTokens" class="message" aria-live="polite"></p>
220220
<button onclick="devToken()">Generate Dev Token</button>
221221
Coming Soon! Stay tuned
222222
</div>
223+
<!-- DO NOT DELETE MY AUTH TOKEN SYSTEM -->
223224
</div>
224225

225226
<!-- Auth Section -->

0 commit comments

Comments
 (0)