1
0
Fork 0
mirror of https://gitbruv.vercel.app/api/git/bruv/gitbruv.git synced 2025-12-20 23:24:09 +01:00
This commit is contained in:
Ahmet Kilinc 2025-12-20 02:43:11 +00:00
parent 8f672d012c
commit 46cab693db
49 changed files with 4725 additions and 118 deletions

97
app/(auth)/login/page.tsx Normal file
View file

@ -0,0 +1,97 @@
"use client";
import { useState } from "react";
import { useRouter } from "next/navigation";
import Link from "next/link";
import { signIn } from "@/lib/auth-client";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { toast } from "sonner";
import { Loader2 } from "lucide-react";
export default function LoginPage() {
const router = useRouter();
const [loading, setLoading] = useState(false);
const [email, setEmail] = useState("");
const [password, setPassword] = useState("");
async function handleSubmit(e: React.FormEvent) {
e.preventDefault();
setLoading(true);
try {
const { error } = await signIn.email({
email,
password,
});
if (error) {
toast.error(error.message || "Failed to sign in");
return;
}
toast.success("Welcome back!");
router.push("/");
router.refresh();
} catch {
toast.error("Something went wrong");
} finally {
setLoading(false);
}
}
return (
<div className="w-full">
<div className="rounded-xl border border-border bg-card/80 backdrop-blur-sm p-8">
<div className="text-center mb-8">
<h1 className="text-xl font-semibold">Sign in to gitbruv</h1>
</div>
<form onSubmit={handleSubmit} className="space-y-5">
<div className="space-y-2">
<Label htmlFor="email">Email address</Label>
<Input
id="email"
type="email"
value={email}
onChange={(e) => setEmail(e.target.value)}
placeholder="you@example.com"
required
className="bg-input/50 h-11"
/>
</div>
<div className="space-y-2">
<Label htmlFor="password">Password</Label>
<Input
id="password"
type="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
placeholder="••••••••"
required
className="bg-input/50 h-11"
/>
</div>
<Button type="submit" disabled={loading} className="w-full h-11">
{loading ? (
<>
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
Signing in...
</>
) : (
"Sign in"
)}
</Button>
</form>
</div>
<div className="mt-6 p-4 rounded-xl border border-border text-center">
<p className="text-sm text-muted-foreground">
New to gitbruv?{" "}
<Link href="/register" className="text-accent hover:underline font-medium">
Create an account
</Link>
</p>
</div>
</div>
);
}