From 63ae5e954ee9f069a640bb2a9287cc2811adfb2b Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Sat, 15 Jun 2024 15:00:11 -0400 Subject: [PATCH] content/join: fix registration form --- content/join.html | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/content/join.html b/content/join.html index bd2296a..76b0d69 100644 --- a/content/join.html +++ b/content/join.html @@ -16,10 +16,8 @@ .findIndex(item => item.title === email); if (index !== -1) { - console.log(result[index]); return true; } else { - console.log("Item not found"); return false; } } @@ -69,7 +67,7 @@ .then(response => response.json()) .then(result => { console.log('Success:', result); - alaert("Request submitted. A working group member will process your registration shortly. If you receive no contact within seven days of registration, please send an email to support@ilot.io"); + alert("Request submitted. A working group member will process your registration shortly. If you receive no contact within seven days of registration, please send an email to support@ilot.io"); }) .catch(error => { console.error('Error:', error)