47 lines
2.0 KiB
TypeScript
47 lines
2.0 KiB
TypeScript
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'
|
|
import { Button } from '@/components/ui/button'
|
|
import Link from 'next/link'
|
|
import { Monitor, Mail, ArrowRight } from 'lucide-react'
|
|
|
|
export default function SignUpSuccessPage() {
|
|
return (
|
|
<div className="flex min-h-svh w-full items-center justify-center p-6 md:p-10">
|
|
<div className="w-full max-w-md">
|
|
<div className="flex flex-col items-center gap-6">
|
|
<div className="flex items-center gap-2">
|
|
<div className="flex h-10 w-10 items-center justify-center rounded-lg bg-primary">
|
|
<Monitor className="h-5 w-5 text-primary-foreground" />
|
|
</div>
|
|
<span className="text-2xl font-bold">RemoteLink</span>
|
|
</div>
|
|
|
|
<Card className="w-full border-border/50">
|
|
<CardHeader className="text-center">
|
|
<div className="mx-auto mb-4 flex h-16 w-16 items-center justify-center rounded-full bg-primary/10">
|
|
<Mail className="h-8 w-8 text-primary" />
|
|
</div>
|
|
<CardTitle className="text-2xl">Check your email</CardTitle>
|
|
<CardDescription className="text-balance">
|
|
{"We've sent you a confirmation link. Please check your inbox and click the link to activate your account."}
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="space-y-4">
|
|
<div className="rounded-lg bg-muted/50 p-4 text-sm text-muted-foreground">
|
|
<p className="text-balance">
|
|
{"Didn't receive the email? Check your spam folder or try signing up again with a different email address."}
|
|
</p>
|
|
</div>
|
|
<Button asChild className="w-full">
|
|
<Link href="/auth/login">
|
|
Go to login
|
|
<ArrowRight className="ml-2 h-4 w-4" />
|
|
</Link>
|
|
</Button>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|