create otp page - link auth page
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import { LoginWithCodeForm } from "../../components/forms/login-with-code-form"
|
||||
|
||||
export const LoginWithCode = () => {
|
||||
return (
|
||||
<>
|
||||
<LoginWithCodeForm />
|
||||
<div className="hidden xl:flex w-1/2 h-full justify-center items-center">
|
||||
<img src="/svgs/auth/login-with-code.svg" alt="login with code" className="auth-image-desktop" />
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
import React from "react"
|
||||
import { SendCodeForm } from "../../components/forms/send-code-form"
|
||||
|
||||
export const SendCode = () => {
|
||||
return (
|
||||
<React.Fragment>
|
||||
<SendCodeForm />
|
||||
<div className="hidden xl:flex w-1/2 h-full justify-center items-center">
|
||||
<img src="/svgs/auth/send-code.svg" alt="send code" className="auth-image-desktop" />
|
||||
</div>
|
||||
</React.Fragment>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user