create otp page - link auth page

This commit is contained in:
Alihaghighattalab
2024-08-05 13:06:00 +03:30
parent 0e5089aad5
commit 277b13e5d8
13 changed files with 704 additions and 8 deletions
+12
View File
@@ -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>
</>
)
}
+13
View File
@@ -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>
)
}