fix: handle the login form state and report errors correctly on api key login
This commit is contained in:
parent
dedec8f317
commit
fb3bc35b40
5 changed files with 256 additions and 187 deletions
15
app/routes/auth/login/logout.tsx
Normal file
15
app/routes/auth/login/logout.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue