Add a disclaimer that the account creation is not an actual thing

Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
This commit is contained in:
Ari Archer 2022-08-11 16:45:08 +03:00
parent b6c51622ea
commit 109ade9841

View file

@ -16,6 +16,11 @@ function pprompt(message) {
} }
async function user_account_create() { 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 username = pprompt(`Enter (make up) your username`);
let password = pprompt(`Enter the password for '${username}'`); let password = pprompt(`Enter the password for '${username}'`);
let password_confirm = pprompt(`Confirm the password for '${username}'`); let password_confirm = pprompt(`Confirm the password for '${username}'`);