From af6c09b7b3c139fbb59f209cbe66924a4ac1608e Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Sun, 1 Feb 2026 16:53:31 -0700 Subject: [PATCH] Improve this --- src/app/account/login/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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