Add /auth/login and /auth/signup routes

This commit is contained in:
jimsu
2025-06-22 22:32:33 -07:00
parent 8e519ca7e1
commit 54235d8dfe
3 changed files with 207 additions and 1 deletions

View File

@ -0,0 +1,98 @@
"use client";
import { useSearchParams, useRouter } from "next/navigation";
import { authClient } from "@/lib/auth-client";
import { Button } from "@/components/ui/button";
import {
Card,
CardContent,
CardDescription,
CardHeader,
CardTitle,
} from "@/components/ui/card";
import { Suspense, useState } from "react";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import Link from "next/link";
import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert";
function LoginForm() {
const searchParams = useSearchParams();
const router = useRouter();
const redirectUrl = searchParams.get("redirect");
const [email, setEmail] = useState("");
const [password, setPassword] = useState("");
const [error, setError] = useState<string | null>(null);
const handleLogin = async () => {
setError(null);
const { error } = await authClient.signIn.email({
email,
password,
});
if (error) {
setError(error.message || "An unexpected error occurred.");
return;
}
router.push(redirectUrl || "/");
};
return (
<div className="flex flex-col space-y-4">
{error && (
<Alert variant="destructive">
<AlertTitle>Error</AlertTitle>
<AlertDescription>{error}</AlertDescription>
</Alert>
)}
<div className="space-y-2">
<Label htmlFor="email">Email</Label>
<Input
id="email"
type="email"
placeholder="m@example.com"
value={email}
onChange={(e) => setEmail(e.target.value)}
/>
</div>
<div className="space-y-2">
<Label htmlFor="password">Password</Label>
<Input
id="password"
type="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
/>
</div>
<Button onClick={handleLogin}>Login</Button>
</div>
);
}
export default function LoginPage() {
return (
<div className="flex h-screen items-center justify-center">
<Card className="w-[350px]">
<CardHeader>
<CardTitle>Login</CardTitle>
<CardDescription>
Enter your email and password to login.
</CardDescription>
</CardHeader>
<CardContent>
<Suspense fallback={<div>Loading...</div>}>
<LoginForm />
</Suspense>
<div className="mt-4 text-center text-sm">
Don't have an account?{" "}
<Link href="/auth/signup" className="underline">
Sign up
</Link>
</div>
</CardContent>
</Card>
</div>
);
}

View File

@ -0,0 +1,108 @@
"use client";
import { useSearchParams, useRouter } from "next/navigation";
import { authClient } from "@/lib/auth-client";
import { Button } from "@/components/ui/button";
import {
Card,
CardContent,
CardDescription,
CardHeader,
CardTitle,
} from "@/components/ui/card";
import { Suspense, useState } from "react";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import Link from "next/link";
import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert";
function SignUpForm() {
const searchParams = useSearchParams();
const router = useRouter();
const redirectUrl = searchParams.get("redirect");
const [name, setName] = useState("");
const [email, setEmail] = useState("");
const [password, setPassword] = useState("");
const [error, setError] = useState<string | null>(null);
const handleSignUp = async () => {
setError(null);
const { error } = await authClient.signUp.email({
name,
email,
password,
});
if (error) {
setError(error.message || "An unexpected error occurred.");
return;
}
router.push(redirectUrl || "/");
};
return (
<div className="flex flex-col space-y-4">
{error && (
<Alert variant="destructive">
<AlertTitle>Error</AlertTitle>
<AlertDescription>{error}</AlertDescription>
</Alert>
)}
<div className="space-y-2">
<Label htmlFor="name">Name</Label>
<Input
id="name"
type="text"
placeholder="John Doe"
value={name}
onChange={(e) => setName(e.target.value)}
/>
</div>
<div className="space-y-2">
<Label htmlFor="email">Email</Label>
<Input
id="email"
type="email"
placeholder="m@example.com"
value={email}
onChange={(e) => setEmail(e.target.value)}
/>
</div>
<div className="space-y-2">
<Label htmlFor="password">Password</Label>
<Input
id="password"
type="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
/>
</div>
<Button onClick={handleSignUp}>Sign Up</Button>
</div>
);
}
export default function SignUpPage() {
return (
<div className="flex h-screen items-center justify-center">
<Card className="w-[350px]">
<CardHeader>
<CardTitle>Sign Up</CardTitle>
<CardDescription>Create an account to get started.</CardDescription>
</CardHeader>
<CardContent>
<Suspense fallback={<div>Loading...</div>}>
<SignUpForm />
</Suspense>
<div className="mt-4 text-center text-sm">
Already have an account?{" "}
<Link href="/auth/login" className="underline">
Login
</Link>
</div>
</CardContent>
</Card>
</div>
);
}

View File

@ -14,7 +14,7 @@ export const auth = betterAuth({
}, },
}, },
emailAndPassword: { emailAndPassword: {
enabled: false, enabled: true,
}, },
appName: "OpenCut", appName: "OpenCut",
trustedOrigins: ["http://localhost:3000"], trustedOrigins: ["http://localhost:3000"],