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.
22 lines
539 B
22 lines
539 B
2 years ago
|
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
|