add payment route + additional starting blocks

This commit is contained in:
2023-07-24 22:57:12 +02:00
parent 4bcde97eb7
commit e25c0f9121
11 changed files with 215 additions and 2 deletions

View File

@@ -1,4 +1,6 @@
import { get_username } from '$lib/js/get_username';;
import type { Actions, PageServerLoad } from "./$types"
import { error } from "@sveltejs/kit"
export const load = (async ({cookies}) => {
return { user: await get_username(cookies) }