22 lines
689 B
TypeScript
22 lines
689 B
TypeScript
import LoginForm from './LoginForm';
|
|
|
|
export default function LoginPage() {
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center bg-base-200 py-12 px-4 sm:px-6 lg:px-8">
|
|
<div className="max-w-md w-full space-y-8">
|
|
<div className="text-center">
|
|
<h2 className="mt-6 text-3xl font-extrabold text-primary">
|
|
BD
|
|
</h2>
|
|
<p className="mt-2 text-sm text-base-content/60">
|
|
Portal de Internet Banking Seguro
|
|
</p>
|
|
</div>
|
|
<div className="bg-base-100 py-8 px-4 shadow sm:rounded-lg sm:px-10 border border-base-300">
|
|
<LoginForm />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|