diff --git a/src/app/account/reset-password/page.tsx b/src/app/account/reset-password/page.tsx
index 0390dbf..fd3374b 100644
--- a/src/app/account/reset-password/page.tsx
+++ b/src/app/account/reset-password/page.tsx
@@ -2,32 +2,15 @@
import './styles.css'
import { Turnstile } from '@marsidev/react-turnstile'
-import { useEffect, useState } from 'react'
import { DiscordButton } from '../../components/DiscordButton'
import { HomeButton } from '../../components/HomeButton'
import axios from 'axios'
-import { useRouter, useSearchParams } from 'next/navigation'
+import { Suspense, useState } from 'react'
+import { useSearchParams } from 'next/navigation'
-export default function CaptchaCodePage () {
+function ResetPasswordForm ({ codeParam }: { codeParam: string }) {
const [token, setToken] = useState No code provided
No code provided
+