Files
CubeAdmin/app/(auth)/accept-invite/page.tsx
2026-03-08 15:49:34 +01:00

167 lines
6.2 KiB
TypeScript

"use client";
import { Suspense, useState, useEffect } from "react";
import { useRouter, useSearchParams } from "next/navigation";
import { Card, CardContent, CardHeader, CardTitle, CardDescription } from "@/components/ui/card";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { Alert } from "@/components/ui/alert";
import { AlertCircle, CheckCircle2, Loader2 } from "lucide-react";
function AcceptInvitePageInner() {
const router = useRouter();
const searchParams = useSearchParams();
const token = searchParams.get("token");
const [name, setName] = useState("");
const [password, setPassword] = useState("");
const [confirmPassword, setConfirmPassword] = useState("");
const [loading, setLoading] = useState(false);
const [error, setError] = useState<string | null>(null);
const [success, setSuccess] = useState(false);
useEffect(() => {
if (!token) {
setError("Invalid or missing invitation token.");
}
}, [token]);
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
if (password !== confirmPassword) {
setError("Passwords do not match");
return;
}
if (password.length < 8) {
setError("Password must be at least 8 characters");
return;
}
setLoading(true);
setError(null);
try {
const res = await fetch("/api/accept-invite", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ token, name, password }),
});
const data = await res.json();
if (!res.ok) throw new Error(data.error);
setSuccess(true);
setTimeout(() => router.push("/login"), 2000);
} catch (err) {
setError(err instanceof Error ? err.message : "Something went wrong");
} finally {
setLoading(false);
}
};
return (
<div className="min-h-screen bg-zinc-950 flex items-center justify-center p-4">
<div className="w-full max-w-md">
{/* Logo */}
<div className="text-center mb-8">
<div className="inline-flex items-center gap-2 text-2xl font-bold text-emerald-500">
<svg width="28" height="28" viewBox="0 0 28 28" fill="none">
<rect x="2" y="2" width="11" height="11" fill="#10b981" rx="2" />
<rect x="15" y="2" width="11" height="11" fill="#10b981" rx="2" opacity="0.6" />
<rect x="2" y="15" width="11" height="11" fill="#10b981" rx="2" opacity="0.6" />
<rect x="15" y="15" width="11" height="11" fill="#10b981" rx="2" />
</svg>
CubeAdmin
</div>
</div>
<Card className="bg-zinc-900 border-zinc-800">
<CardHeader>
<CardTitle className="text-white">Accept Invitation</CardTitle>
<CardDescription className="text-zinc-400">
Create your account to access the Minecraft server panel.
</CardDescription>
</CardHeader>
<CardContent>
{success ? (
<div className="flex flex-col items-center gap-3 py-6 text-center">
<CheckCircle2 className="w-10 h-10 text-emerald-500" />
<p className="text-white font-medium">Account created!</p>
<p className="text-zinc-400 text-sm">
Redirecting you to the login page...
</p>
</div>
) : (
<form onSubmit={handleSubmit} className="space-y-4">
{error && (
<Alert className="bg-red-500/10 border-red-500/30 text-red-400">
<AlertCircle className="w-4 h-4" />
<span className="ml-2 text-sm">{error}</span>
</Alert>
)}
<div className="space-y-1.5">
<Label className="text-zinc-300">Your Name</Label>
<Input
type="text"
value={name}
onChange={(e) => setName(e.target.value)}
placeholder="John Doe"
required
disabled={!token || loading}
className="bg-zinc-800 border-zinc-700 text-white placeholder:text-zinc-500 focus:border-emerald-500/50"
/>
</div>
<div className="space-y-1.5">
<Label className="text-zinc-300">Password</Label>
<Input
type="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
placeholder="At least 8 characters"
required
disabled={!token || loading}
className="bg-zinc-800 border-zinc-700 text-white placeholder:text-zinc-500 focus:border-emerald-500/50"
/>
</div>
<div className="space-y-1.5">
<Label className="text-zinc-300">Confirm Password</Label>
<Input
type="password"
value={confirmPassword}
onChange={(e) => setConfirmPassword(e.target.value)}
placeholder="Repeat your password"
required
disabled={!token || loading}
className="bg-zinc-800 border-zinc-700 text-white placeholder:text-zinc-500 focus:border-emerald-500/50"
/>
</div>
<Button
type="submit"
disabled={!token || loading || !name || !password || !confirmPassword}
className="w-full bg-emerald-600 hover:bg-emerald-500 text-white"
>
{loading ? (
<>
<Loader2 className="w-4 h-4 mr-2 animate-spin" />
Creating account...
</>
) : (
"Create Account"
)}
</Button>
</form>
)}
</CardContent>
</Card>
</div>
</div>
);
}
export default function AcceptInvitePage() {
return (
<Suspense>
<AcceptInvitePageInner />
</Suspense>
);
}