You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
539 B
21 lines
539 B
import { BlitzPage } from "@blitzjs/next" |
|
import Layout from "app/core/layouts/Layout" |
|
import { LoginForm } from "app/auth/components/LoginForm" |
|
import { useRouter } from "next/router" |
|
|
|
const LoginPage: BlitzPage = () => { |
|
const router = useRouter() |
|
|
|
return ( |
|
<Layout title="Log In"> |
|
<LoginForm |
|
onSuccess={(_user) => { |
|
const next = router.query.next ? decodeURIComponent(router.query.next as string) : "/" |
|
return router.push(next) |
|
}} |
|
/> |
|
</Layout> |
|
) |
|
} |
|
|
|
export default LoginPage
|
|
|