Skip to content

Commit b44ac5e

Browse files
authored
Update account.html
1 parent 594f436 commit b44ac5e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/account.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,10 @@
185185
}
186186

187187
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!`;
188190
devTokens.style.color = "green";
189-
devTokens.textContent = "Generating Dev Token...";
191+
devTokens.textContent = "${joined}";
190192
}
191193
</script>
192194
</head>

0 commit comments

Comments
 (0)