From e4f373ef6e1ddedf0924f6fcbc6e63e2a80a7583 Mon Sep 17 00:00:00 2001 From: Nabil Ould Hamou Date: Wed, 4 Dec 2024 16:35:52 +0100 Subject: [PATCH] funny things --- src/routes/+page.svelte | 14 ++++++++++++-- src/routes/api/auth/register/+server.ts | 6 ++---- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index ef5b570..68eb658 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -23,6 +23,8 @@ }); + let random = Math.trunc(Math.random() * 10); +
@@ -36,7 +38,11 @@ - 🌳 - Arbres + {#if random > 8} + 🌳 - Arabes + {:else} + 🌳 - Arbres + {/if} Connectez vous pour chatter!
@@ -60,7 +66,11 @@ - 🌳 - Arbres + {#if random > 8} + 🌳 - Arabes + {:else} + 🌳 - Arbres + {/if} Inscrivez-vous pour chatter! diff --git a/src/routes/api/auth/register/+server.ts b/src/routes/api/auth/register/+server.ts index 6a24c4f..674d547 100644 --- a/src/routes/api/auth/register/+server.ts +++ b/src/routes/api/auth/register/+server.ts @@ -8,9 +8,9 @@ export async function POST({request}) { const formData = await request.formData(); // @ts-ignore - const username: string = formData.get('username').toString(); + const username: string = formData.get('username').toString().toLowerCase(); // @ts-ignore - const email: string = formData.get('email').toString(); + const email: string = formData.get('email').toString().toLowerCase(); // @ts-ignore const password: string = formData.get('password').toString(); @@ -28,9 +28,7 @@ export async function POST({request}) { return error(400, {message: "Un compte avec cette adresse email ou nom d'utilisateur existe déjà."}); } - logger.debug(`No user found with email (${email}) in database`); try { - const hash = await argon2.hash(password); const newUser = await prismaClient.user.create({