fix: handle the login form state and report errors correctly on api key login

This commit is contained in:
Aarnav Tale 2025-04-14 16:01:06 -04:00
parent dedec8f317
commit fb3bc35b40
5 changed files with 256 additions and 187 deletions

View file

@ -0,0 +1,15 @@
import Card from '~/components/Card';
export default function Logout() {
return (
<div className="flex w-screen h-screen items-center justify-center">
<Card className="max-w-md m-4 sm:m-0">
<Card.Title>You have been logged out</Card.Title>
<Card.Text>
You can now close this window. If you would like to log in again,
please refresh the page.
</Card.Text>
</Card>
</div>
);
}