-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhuman-verification.tsx
28 lines (26 loc) · 1.06 KB
/
human-verification.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { ChevronRight } from "lucide-react"
export default function HumanVerification() {
return (
<div className="flex min-h-screen items-center justify-center bg-white p-4">
<div className="w-full max-w-md text-center">
<h1 className="mb-4 text-3xl font-bold text-orange-500">Let's confirm you are human</h1>
<p className="mb-6 text-sm text-gray-600">
Complete the security check before continuing. This step verifies that you are not a bot, which helps to
protect your account and prevent spam.
</p>
<button className="mb-6 inline-flex items-center rounded bg-orange-500 px-4 py-2 font-bold text-white hover:bg-orange-600">
Begin
<ChevronRight className="ml-2 h-4 w-4" />
</button>
<div>
<select className="rounded border border-gray-300 px-2 py-1 text-sm">
<option>English</option>
<option>Español</option>
<option>Français</option>
<option>Deutsch</option>
</select>
</div>
</div>
</div>
)
}