import { resetPasswordAction } from "@/app/(auth-pages)/actions"; import { FormMessage, Message } from "@/app/_components/form-message"; import { SubmitButton } from "@/app/_components/submit-button"; import { Input } from "@/app/_components/ui/input"; import { Label } from "@/app/_components/ui/label"; export default async function ResetPassword(props: { searchParams: Promise; }) { const searchParams = await props.searchParams; return (

Reset password

Please enter your new password below.

Reset password ); }