Files
remotelink-docker/app/auth/invite/[token]/invite-form.tsx
2026-04-10 15:36:33 -07:00

137 lines
3.9 KiB
TypeScript

'use client'
import { useState } from 'react'
import { useRouter } from 'next/navigation'
import { Button } from '@/components/ui/button'
import {
Card,
CardContent,
CardDescription,
CardHeader,
CardTitle,
} from '@/components/ui/card'
import { Input } from '@/components/ui/input'
import { Label } from '@/components/ui/label'
interface InviteFormProps {
token: string
email: string
}
export default function InviteForm({ token, email }: InviteFormProps) {
const [fullName, setFullName] = useState('')
const [password, setPassword] = useState('')
const [confirmPassword, setConfirmPassword] = useState('')
const [error, setError] = useState<string | null>(null)
const [isLoading, setIsLoading] = useState(false)
const router = useRouter()
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault()
setError(null)
if (password !== confirmPassword) {
setError('Passwords do not match')
return
}
if (password.length < 8) {
setError('Password must be at least 8 characters')
return
}
setIsLoading(true)
try {
const res = await fetch('/api/invites/accept', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ token, fullName, password }),
})
const data = await res.json()
if (!res.ok) {
setError(data.error || 'Something went wrong')
return
}
router.push('/auth/login?invited=1')
} catch {
setError('Network error. Please try again.')
} finally {
setIsLoading(false)
}
}
return (
<Card className="border-border/50">
<CardHeader>
<CardTitle className="text-2xl">Set up your account</CardTitle>
<CardDescription>
You were invited to join RemoteLink
</CardDescription>
</CardHeader>
<CardContent>
<form onSubmit={handleSubmit}>
<div className="flex flex-col gap-4">
<div className="grid gap-2">
<Label htmlFor="email">Email</Label>
<Input
id="email"
type="email"
value={email}
disabled
className="bg-secondary/50 opacity-60"
/>
</div>
<div className="grid gap-2">
<Label htmlFor="fullName">Full name</Label>
<Input
id="fullName"
type="text"
placeholder="John Doe"
required
value={fullName}
onChange={(e) => setFullName(e.target.value)}
className="bg-secondary/50"
/>
</div>
<div className="grid gap-2">
<Label htmlFor="password">Password</Label>
<Input
id="password"
type="password"
placeholder="At least 8 characters"
required
value={password}
onChange={(e) => setPassword(e.target.value)}
className="bg-secondary/50"
/>
</div>
<div className="grid gap-2">
<Label htmlFor="confirmPassword">Confirm password</Label>
<Input
id="confirmPassword"
type="password"
required
value={confirmPassword}
onChange={(e) => setConfirmPassword(e.target.value)}
className="bg-secondary/50"
/>
</div>
{error && (
<div className="rounded-md bg-destructive/10 border border-destructive/20 p-3">
<p className="text-sm text-destructive">{error}</p>
</div>
)}
<Button type="submit" className="w-full mt-2" disabled={isLoading}>
{isLoading ? 'Creating account...' : 'Create account'}
</Button>
</div>
</form>
</CardContent>
</Card>
)
}