diff --git a/package.json b/package.json index ff26ec6..a7319d6 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,7 @@ "@radix-ui/react-slot": "^1.1.2", "@supabase/ssr": "^0.5.2", "@supabase/supabase-js": "^2.49.1", + "@types/zxcvbn": "^4.4.5", "class-variance-authority": "^0.7.1", "clsx": "^2.1.1", "lucide-react": "^0.476.0", @@ -20,7 +21,8 @@ "react": "^19.0.0", "react-dom": "^19.0.0", "tailwind-merge": "^3.0.2", - "tailwindcss-animate": "^1.0.7" + "tailwindcss-animate": "^1.0.7", + "zxcvbn": "^4.4.2" }, "devDependencies": { "@eslint/eslintrc": "^3", diff --git a/src/app/register/page.tsx b/src/app/register/page.tsx new file mode 100644 index 0000000..b8ddbe4 --- /dev/null +++ b/src/app/register/page.tsx @@ -0,0 +1,166 @@ +'use client' + +import { motion } from "motion/react"; +import { Navbar } from "@/components/navbar"; +import { Button } from "@/components/ui/button"; +import { Input } from "@/components/ui/input"; +import { Lock, Mail, User } from "lucide-react"; +import { useState } from "react"; +import { createClient } from '@/utils/supabase/client' +import zxcvbn from "zxcvbn"; + +export default function Register() { + const supabase = createClient(); + + const [name, setName] = useState(""); + const [email, setEmail] = useState(""); + const [password, setPassword] = useState(""); + const [confirmPassword, setConfirmPassword] = useState(""); + const [error, setError] = useState(null); + const [passwordStrength, setPasswordStrength] = useState(null); + + const handlePasswordInput = async (pass: string) => { + // This function is called whenever the user types in the password field + setPassword(pass); + + // Calculate password strength with Dropbox's zxcvbn library + setPasswordStrength(zxcvbn(password).score); + + // TODO: Display password strength to the user + console.log(passwordStrength); + } + + const handleSignUp = async () => { + setError(null); + + // TODO: Validate email address + // TODO: Validate password strength + // TODO: Validate password confirmation + + const { error } = await supabase.auth.signUp({ + email, password, options: { + data: { + name: name + } + } + }); + if (error) setError(error.message); + + // TODO: Clear form fields after successful sign up + // TODO: Display email verification message to the user + }; + + const handleGoogleSignIn = async () => { + const { error } = await supabase.auth.signInWithOAuth({ provider: 'google' }); + if (error) setError(error.message); + }; + + return ( +
+
+ +
+ +
+ {/* Card */} + +

Register

+ + {error &&

{error}

} + +
+
+ +
+ + setName(e.target.value)} + /> +
+
+ +
+ +
+ + setEmail(e.target.value)} + /> +
+
+ +
+ +
+ + handlePasswordInput(e.target.value)} + /> +
+
+ +
+ +
+ + setConfirmPassword(e.target.value)} + /> +
+
+ + + +
+

By signing up, you agree to our Terms of Service and Privacy Policy

+
+ + +
+
+

or

+
+
+ +
+ +

+ Already have an account? Login +

+
+
+ +
+ ); +} diff --git a/yarn.lock b/yarn.lock index 76da707..033df31 100644 --- a/yarn.lock +++ b/yarn.lock @@ -507,6 +507,11 @@ dependencies: "@types/node" "*" +"@types/zxcvbn@^4.4.5": + version "4.4.5" + resolved "https://registry.yarnpkg.com/@types/zxcvbn/-/zxcvbn-4.4.5.tgz#8ce8623ed7a36e3a76d1c0b539708dfb2e859bc0" + integrity sha512-FZJgC5Bxuqg7Rhsm/bx6gAruHHhDQ55r+s0JhDh8CQ16fD7NsJJ+p8YMMQDhSQoIrSmjpqqYWA96oQVMNkjRyA== + "@typescript-eslint/eslint-plugin@^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0": version "8.24.1" resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.24.1.tgz#d104c2a6212304c649105b18af2c110b4a1dd4ae" @@ -3169,3 +3174,8 @@ yocto-queue@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== + +zxcvbn@^4.4.2: + version "4.4.2" + resolved "https://registry.yarnpkg.com/zxcvbn/-/zxcvbn-4.4.2.tgz#28ec17cf09743edcab056ddd8b1b06262cc73c30" + integrity sha512-Bq0B+ixT/DMyG8kgX2xWcI5jUvCwqrMxSFam7m0lAf78nf04hv6lNCsyLYdyYTrCVMqNDY/206K7eExYCeSyUQ==