summaryrefslogtreecommitdiff
path: root/ui/routes/(login)
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2024-10-11 01:18:18 -0400
committerOwen Jacobson <owen@grimoire.ca>2024-10-11 01:18:18 -0400
commit72f3d8c5ab3e2a42cf1a76d0c08815dbe46e50a1 (patch)
tree2b582e5319ac377649379851f8f5910517ca2a72 /ui/routes/(login)
parent2e2e3980ab78052be74f4007c343e69a583648fe (diff)
Move login to its own route.
This - in passing - fixes the problem where the client failed to subscribe after logging in, by causing the whole subscription process to be re-run when returning to the main interface.
Diffstat (limited to 'ui/routes/(login)')
-rw-r--r--ui/routes/(login)/login/+page.svelte5
1 files changed, 5 insertions, 0 deletions
diff --git a/ui/routes/(login)/login/+page.svelte b/ui/routes/(login)/login/+page.svelte
new file mode 100644
index 0000000..c333fdd
--- /dev/null
+++ b/ui/routes/(login)/login/+page.svelte
@@ -0,0 +1,5 @@
+<script>
+ import LogIn from '$lib/components/LogIn.svelte';
+</script>
+
+<LogIn />