Skip to content
Snippets Groups Projects
Commit b3d72c37 authored by ALMAZROUEI Shamma (2021) WKIS203's avatar ALMAZROUEI Shamma (2021) WKIS203
Browse files

Update login page structure

parent 2d4d4734
Branches
No related tags found
No related merge requests found
import { LoginForm } from './components/login-form';
export default function App() {
return (
<div>
<LoginForm />
</div>
);
return <div></div>;
}
import { LoginForm } from "@/components/login-form"
export default function LoginPage() {
return (
(<div
className="flex min-h-svh flex-col items-center justify-center bg-muted p-6 md:p-10">
<div className="w-full max-w-sm md:max-w-3xl">
<LoginForm />
</div>
</div>)
);
}
import { LoginForm } from '@/components/login-form';
export default function LoginPage() {
return (
<div className='flex min-h-svh flex-col items-center justify-center bg-muted p-6 md:p-10'>
<div className='w-full max-w-sm md:max-w-3xl'>
<LoginForm />
</div>
</div>
);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment