Loading dashboard...
Loading dashboard...
import {
InputOTP,
InputOTPGroup,
InputOTPSeparator,
InputOTPSlot,
} from "@/components/ui/input-otp"<InputOTP maxLength={6}>
<InputOTPGroup>
<InputOTPSlot index={0} />
<InputOTPSlot index={1} />
<InputOTPSlot index={2} />
</InputOTPGroup>
<InputOTPSeparator />
<InputOTPGroup>
<InputOTPSlot index={3} />
<InputOTPSlot index={4} />
<InputOTPSlot index={5} />
</InputOTPGroup>
</InputOTP>Use the pattern prop to define a custom pattern for the OTP input.
import { REGEXP_ONLY_DIGITS_AND_CHARS } from "input-otp"
;<InputOTP maxLength={6} pattern={REGEXP_ONLY_DIGITS_AND_CHARS}>
...
</InputOTP>Use the <InputOTPSeparator /> component to add a separator between input groups.
Use the disabled prop to disable the input.
Use the value and onChange props to control the input value.
Use aria-invalid on the slots to show an error state.
A common pattern for PIN codes. This uses the pattern={REGEXP_ONLY_DIGITS} prop.
Use REGEXP_ONLY_DIGITS_AND_CHARS to accept both letters and numbers.
See the input-otp documentation for more information.
import {
InputOTP,
InputOTPGroup,"use client"
import { Field, FieldLabel } from "@/components/ui/field""use client"
import * as React from "react""use client"
import * as React from "react""use client"
import {"use client"
import {import { Button } from "@/components/ui/button"
import {
Card,import { Field, FieldLabel } from "@/components/ui/field"
import {
InputOTP,import {
InputOTP,
InputOTPGroup,