updated login/signup form to shadcn

This commit is contained in:
2025-07-10 09:39:49 -04:00
parent 5143be1a67
commit 14cbbccd3a
13 changed files with 298 additions and 18 deletions

View File

@@ -1,10 +1,17 @@
import LoginForm from '@/components/LoginForm';
import FormWrapper from '@/components/forms/FormWrapper'
import LoginForm from '@/components/forms/LoginForm'
import React from 'react'
export default function LoginPage() {
return (
<div>
<LoginForm />
<div className="flex min-h-svh w-full items-center justify-center p-6 md:p-10">
<div className="w-full max-w-sm">
<FormWrapper
title='Login to your account'
description='Enter your email below to login to your account'
form={<LoginForm />}
/>
</div>
</div>
)
}