'use client'; import React, { useState } from 'react'; import Image from 'next/image'; type Mode = 'light' | 'dark'; interface Props { mode?: Mode; } function CreateNewPasswordForm({ mode }: Props) { const [password, setPassword] = useState(''); const [confirmPassword, setConfirmPassword] = useState(''); return (
Create New Password
Ensure that your new password is different from the previous one.