about and login page added

This commit is contained in:
ed barz 2023-05-24 21:36:24 +02:00
parent 70d757cc92
commit 4840b9599c
4 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,5 @@
<svelte:head>
<title>About</title>
</svelte:head>
<h1>About</h1>

View File

@ -0,0 +1,5 @@
<svelte:head>
<title>Login</title>
</svelte:head>
<h1>Login page</h1>

View File

@ -0,0 +1,2 @@
export const prerender = false;
export const ssr = false;

View File

@ -0,0 +1,6 @@
<script>
import { page } from '$app/stores';
const loginCode = $page.params.loginCode;
</script>
<h1>Login with a email code: {loginCode}</h1>