From 109ade9841e529e3d8c4d501b95d24146b0d2681 Mon Sep 17 00:00:00 2001 From: Ari Archer Date: Thu, 11 Aug 2022 16:45:08 +0300 Subject: [PATCH] Add a disclaimer that the account creation is not an actual thing Signed-off-by: Ari Archer --- content/js/handlers/user_account.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/content/js/handlers/user_account.js b/content/js/handlers/user_account.js index ff986e8..5651b05 100644 --- a/content/js/handlers/user_account.js +++ b/content/js/handlers/user_account.js @@ -16,6 +16,11 @@ function pprompt(message) { } async function user_account_create() { + alert( + "This account is not a *real* account, this is just a toy to refer \ +to you by your username and for more realistic 'root' access" + ); + let username = pprompt(`Enter (make up) your username`); let password = pprompt(`Enter the password for '${username}'`); let password_confirm = pprompt(`Confirm the password for '${username}'`);