24 lines
808 B
TypeScript
24 lines
808 B
TypeScript
"use client";
|
||
import React from "react";
|
||
import SignPhoneInForm from "./singInForm";
|
||
import LeftSidePanel from "@/components/login/leftsidepanel";
|
||
|
||
const LoginWithPhone: React.FC = () => {
|
||
return (
|
||
<>
|
||
<div className="absolute top-0 left-0 min-w-full min-h-full">
|
||
<div className="mx-auto max-w-screen-2xl p-4 md:p-6 2xl:p-10">
|
||
<div className="rounded-sm border border-stroke bg-white shadow-default dark:border-strokedark dark:bg-boxdark">
|
||
<div className="flex flex-wrap items-center">
|
||
<LeftSidePanel textLabel="Evyos Yönetim Modülüne hoşgeldiniz. Lütfen telefon ve şifreniz ile giriş yapınız." />
|
||
<SignPhoneInForm />
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</>
|
||
);
|
||
};
|
||
|
||
export default LoginWithPhone;
|