wag-frontend-version-3/src/pages/LoginViaPhone/page.tsx

24 lines
808 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"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;