Add: Proper Account creation

This commit is contained in:
2024-05-16 12:25:41 +03:00
parent 5d2c9c5f9a
commit 62edbd9cd2
2 changed files with 47 additions and 13 deletions
+3 -1
View File
@@ -19,7 +19,9 @@ async function POST({ request }) {
return;
}
registerUser(username, password);
const result = await registerUser(username, password);
console.log(result);
}
/** @type {import('./$types').Actions} */