login is functional now

This commit is contained in:
2024-01-11 12:59:52 +01:00
parent 05b9ddd5a1
commit d0937f626d
10 changed files with 1509 additions and 110 deletions

View File

@@ -2,5 +2,6 @@ import { type Writable, writable } from "svelte/store";
import { Page } from "../consts/pages";
import type { User } from "../types/user";
export const startup = writable(false);
export const currentUser: Writable<undefined | User> = writable(undefined);
export const currentPage = writable(Page.Login);