Remove Debug Text on Login Form

This commit is contained in:
Neshura 2024-04-26 02:17:08 +02:00
parent 7b0874691e
commit d800031d3e
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C
2 changed files with 1 additions and 2 deletions

View file

@ -7,7 +7,6 @@ import { zod } from "sveltekit-superforms/adapters";
export const load: PageServerLoad = async () => { export const load: PageServerLoad = async () => {
return { return {
form: await superValidate(zod(formSchema)), form: await superValidate(zod(formSchema)),
origin: process.env.ORIGIN,
}; };
}; };

View file

@ -13,7 +13,7 @@
<div class="h-full flex flex-col items-center justify-center"> <div class="h-full flex flex-col items-center justify-center">
<Card.Root class="border-2 p-2"> <Card.Root class="border-2 p-2">
<Card.Header> <Card.Header>
<Card.Title class="text-center">Login to {data.origin}</Card.Title> <Card.Title class="text-center">Login</Card.Title>
<Card.Description></Card.Description> <Card.Description></Card.Description>
</Card.Header> </Card.Header>
<Card.Content> <Card.Content>