Add password base login form

This commit is contained in:
sirin 2024-10-03 02:29:32 +07:00
parent ebd38f5da1
commit 6e5408210c
5 changed files with 72 additions and 0 deletions

12
package-lock.json generated
View File

@ -26,6 +26,7 @@
"b2d-ventures": "file:", "b2d-ventures": "file:",
"class-variance-authority": "^0.7.0", "class-variance-authority": "^0.7.0",
"clsx": "^2.1.1", "clsx": "^2.1.1",
"dotenv": "^16.4.5",
"embla-carousel-react": "^8.2.0", "embla-carousel-react": "^8.2.0",
"lucide-react": "^0.428.0", "lucide-react": "^0.428.0",
"next": "14.2.5", "next": "14.2.5",
@ -2653,6 +2654,17 @@
"csstype": "^3.0.2" "csstype": "^3.0.2"
} }
}, },
"node_modules/dotenv": {
"version": "16.4.5",
"resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz",
"integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==",
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://dotenvx.com"
}
},
"node_modules/eastasianwidth": { "node_modules/eastasianwidth": {
"version": "0.2.0", "version": "0.2.0",
"resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",

View File

@ -27,6 +27,7 @@
"b2d-ventures": "file:", "b2d-ventures": "file:",
"class-variance-authority": "^0.7.0", "class-variance-authority": "^0.7.0",
"clsx": "^2.1.1", "clsx": "^2.1.1",
"dotenv": "^16.4.5",
"embla-carousel-react": "^8.2.0", "embla-carousel-react": "^8.2.0",
"lucide-react": "^0.428.0", "lucide-react": "^0.428.0",
"next": "14.2.5", "next": "14.2.5",

View File

@ -3,6 +3,7 @@ import { Button } from "@/components/ui/button";
import { Card, CardContent, CardFooter, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; import { Card, CardContent, CardFooter, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
import { LoginButton } from "@/components/auth/loginButton"; import { LoginButton } from "@/components/auth/loginButton";
import { LoginForm } from "@/components/auth/loginForm";
export default function Login() { export default function Login() {
return ( return (
@ -18,6 +19,8 @@ export default function Login() {
</CardHeader> </CardHeader>
<CardContent className="flex flex-col gap-y-2 mx-28"> <CardContent className="flex flex-col gap-y-2 mx-28">
<p className="self-center font-semibold text-slate-800 dark:text-slate-200">Continue With</p> <p className="self-center font-semibold text-slate-800 dark:text-slate-200">Continue With</p>
<LoginForm />
<hr></hr>
<LoginButton /> <LoginButton />
</CardContent> </CardContent>
<CardFooter className="text-xs justify-center"> <CardFooter className="text-xs justify-center">

View File

@ -0,0 +1,31 @@
"use client";
import { createSupabaseClient } from "@/lib/supabase/clientComponentClient";
import { useState } from "react";
import { Input } from "@/components/ui/input";
import { Button } from "@/components/ui/button";
import { useRouter } from "next/navigation";
export function LoginForm() {
const router = useRouter();
const supabase = createSupabaseClient();
const [email, setEmail] = useState("");
const [password, setPassword] = useState("");
const handleLogin = async (event: React.MouseEvent<HTMLButtonElement>) => {
event.preventDefault();
await supabase.auth.signInWithPassword({
email,
password,
});
router.push("/");
};
return (
<div className="flex flex-col space-y-2">
<Input type="text" value={email} onChange={(e) => setEmail(e.target.value)} placeholder="Email" />
<Input type="password" value={password} onChange={(e) => setPassword(e.target.value)} placeholder="Password" />
<Button onClick={handleLogin}>Login</Button>
</div>
);
}

View File

@ -0,0 +1,25 @@
import * as React from "react"
import { cn } from "@/lib/utils"
export interface InputProps
extends React.InputHTMLAttributes<HTMLInputElement> {}
const Input = React.forwardRef<HTMLInputElement, InputProps>(
({ className, type, ...props }, ref) => {
return (
<input
type={type}
className={cn(
"flex h-10 w-full rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50",
className
)}
ref={ref}
{...props}
/>
)
}
)
Input.displayName = "Input"
export { Input }