Skip to content

Commit

Permalink
chore(db): database
Browse files Browse the repository at this point in the history
  • Loading branch information
ibrahimraimi committed May 27, 2024
1 parent 2889ad3 commit b975ef1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,4 @@ node_modules
!.env.example
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
/migrations
/db
/migrations
Binary file added db/sqlite.db
Binary file not shown.
6 changes: 3 additions & 3 deletions src/routes/auth/email-verification/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<script lang="ts">
import type { PageData } from './$types.js';
import type { PageData } from "./$types.js";
// import EmailVerificationForm from '$lib/components/Forms/EmailVerificationForm.svelte';
// import FormHeader from '$lib/components/Forms/FormHeader.svelte';
// import LuciaFormContainer from '$lib/components/Forms/LuciaFormContainer.svelte';
export let data: PageData;
// export let data: PageData;
</script>

<div class="flex items-center justify-center w-screen h-svh bg-background">
<div class="flex h-svh w-screen items-center justify-center bg-background">
<!-- <EmailVerificationForm data={data.form} showBadge showContainer /> -->

<!-- <LuciaFormContainer showBadge>
Expand Down

0 comments on commit b975ef1

Please sign in to comment.