This commit is contained in:
2024-03-13 00:30:45 +01:00
commit d761a10bf7
102 changed files with 4761 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import type { PageLoad } from './$types';
export const load: PageLoad = async ({ url }) => {
return {
username: url.searchParams.get('un'),
email: url.searchParams.get('e'),
};
};