diff --git a/src/app/account/login/page.tsx b/src/app/account/login/page.tsx index 6d54530..3043f81 100644 --- a/src/app/account/login/page.tsx +++ b/src/app/account/login/page.tsx @@ -7,6 +7,7 @@ import { HomeButton } from '@/app/components/HomeButton' import { DiscordButton } from '@/app/components/DiscordButton' import axios from 'axios' import Link from 'next/link' +import { BackButton } from '@/app/components/BackButton' function AccountLoginForm ({ redirect }: { redirect: string | null }) { const [loading, setLoading] = useState(true) @@ -29,7 +30,7 @@ function AccountLoginForm ({ redirect }: { redirect: string | null }) { return (
- + {alreadyLoggedIn ? : }

{loading