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 594f436 commit b44ac5eCopy full SHA for b44ac5e
src/account.html
@@ -185,8 +185,10 @@
185
}
186
187
function devToken() {
188
+ const usernameEncoded = localStorage.getItem('usernameEnc');
189
+ const joined = `Your dev token is: ${usernameEncoded} - Make sure to only share it with Coding Hut services and partners or else you can get hacked!`;
190
devTokens.style.color = "green";
- devTokens.textContent = "Generating Dev Token...";
191
+ devTokens.textContent = "${joined}";
192
193
</script>
194
</head>
0 commit comments