create auth components folder

This commit is contained in:
maxid
2026-01-03 12:03:33 +01:00
parent d9d6f944e8
commit 4de6ab9acb
4 changed files with 12 additions and 12 deletions

View File

@@ -1,11 +1,11 @@
<script lang="ts">
import { Button } from '$lib/components/ui/button/index.js';
import * as Card from '$lib/components/ui/card/index.js';
import { Input } from '$lib/components/ui/input/index.js';
import { Label } from '$lib/components/ui/label/index.js';
import { Button } from '$lib/components/ui/button';
import * as Card from '$lib/components/ui/card';
import { Input } from '$lib/components/ui/input';
import { Label } from '$lib/components/ui/label';
import { goto } from '$app/navigation';
import { toast } from 'svelte-sonner';
import * as Alert from '$lib/components/ui/alert/index.js';
import * as Alert from '$lib/components/ui/alert';
import AlertCircleIcon from '@lucide/svelte/icons/alert-circle';
import LoadingBar from '$lib/components/loading-bar.svelte';
import client from '$lib/api';

View File

@@ -1,10 +1,10 @@
<script lang="ts">
import { Button } from '$lib/components/ui/button/index.js';
import * as Card from '$lib/components/ui/card/index.js';
import { Input } from '$lib/components/ui/input/index.js';
import { Label } from '$lib/components/ui/label/index.js';
import { Button } from '$lib/components/ui/button';
import * as Card from '$lib/components/ui/card';
import { Input } from '$lib/components/ui/input';
import { Label } from '$lib/components/ui/label';
import { toast } from 'svelte-sonner';
import * as Alert from '$lib/components/ui/alert/index.js';
import * as Alert from '$lib/components/ui/alert';
import AlertCircleIcon from '@lucide/svelte/icons/alert-circle';
import LoadingBar from '$lib/components/loading-bar.svelte';
import CheckCircle2Icon from '@lucide/svelte/icons/check-circle-2';

View File

@@ -1,5 +1,5 @@
<script lang="ts">
import LoginCard from '$lib/components/login-card.svelte';
import LoginCard from '$lib/components/auth/login-card.svelte';
import { page } from '$app/state';
import type { components } from '$lib/api/api';
let loginMetaData: components['schemas']['AuthMetadata'] = $derived(page.data.loginData);

View File

@@ -1,5 +1,5 @@
<script lang="ts">
import SignupCard from '$lib/components/signup-card.svelte';
import SignupCard from '$lib/components/auth/signup-card.svelte';
import { page } from '$app/state';
let oauthProviders: string[] = $derived(page.data.oauthProviders);