about and login page added
This commit is contained in:
parent
70d757cc92
commit
4840b9599c
|
@ -0,0 +1,5 @@
|
||||||
|
<svelte:head>
|
||||||
|
<title>About</title>
|
||||||
|
</svelte:head>
|
||||||
|
|
||||||
|
<h1>About</h1>
|
|
@ -0,0 +1,5 @@
|
||||||
|
<svelte:head>
|
||||||
|
<title>Login</title>
|
||||||
|
</svelte:head>
|
||||||
|
|
||||||
|
<h1>Login page</h1>
|
|
@ -0,0 +1,2 @@
|
||||||
|
export const prerender = false;
|
||||||
|
export const ssr = false;
|
|
@ -0,0 +1,6 @@
|
||||||
|
<script>
|
||||||
|
import { page } from '$app/stores';
|
||||||
|
const loginCode = $page.params.loginCode;
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<h1>Login with a email code: {loginCode}</h1>
|
Loading…
Reference in New Issue