mirror of
https://git.ari.lt/ari.lt/ari.lt.git
synced 2025-02-04 17:49:24 +01:00
update @ Sat 30 Apr 21:22:12 EEST 2022
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
This commit is contained in:
parent
4ab227330f
commit
9216e6edd4
2 changed files with 9 additions and 4 deletions
|
@ -9,7 +9,7 @@ const boot_message = {
|
||||||
sleep_time: 0,
|
sleep_time: 0,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
const do_sleep = false;
|
const do_sleep = true;
|
||||||
const locations = {
|
const locations = {
|
||||||
0: {
|
0: {
|
||||||
url: "/git",
|
url: "/git",
|
||||||
|
|
|
@ -1,9 +1,14 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
|
function pprompt(message) {
|
||||||
|
let value = prompt(message);
|
||||||
|
return value ? value : pprompt(message);
|
||||||
|
}
|
||||||
|
|
||||||
async function user_account_create() {
|
async function user_account_create() {
|
||||||
let username = prompt(`Enter your username`);
|
let username = pprompt(`Enter (make up) your username`);
|
||||||
let password = prompt(`Enter the password for '${username}'`);
|
let password = pprompt(`Enter the password for '${username}'`);
|
||||||
let password_confirm = prompt(`Confirm the password for '${username}'`);
|
let password_confirm = pprompt(`Confirm the password for '${username}'`);
|
||||||
|
|
||||||
let tmp_boot_entries = {
|
let tmp_boot_entries = {
|
||||||
0: {
|
0: {
|
||||||
|
|
Loading…
Add table
Reference in a new issue