| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- import { Logo } from '@/assets/logo'
- import { cn } from '@/lib/utils'
- import dashboardDark from './assets/dashboard-dark.png'
- import dashboardLight from './assets/dashboard-light.png'
- import { UserAuthForm } from './components/user-auth-form'
- export function SignIn2() {
- return (
- <div className='relative container grid h-svh flex-col items-center justify-center lg:max-w-none lg:grid-cols-2 lg:px-0'>
- <div className='lg:p-8'>
- <div className='mx-auto flex w-full flex-col justify-center space-y-2 py-8 sm:w-[480px] sm:p-8'>
- <div className='mb-4 flex items-center justify-center'>
- <Logo className='me-2' />
- <h1 className='text-xl font-medium'>Shadcn Admin</h1>
- </div>
- </div>
- <div className='mx-auto flex w-full max-w-sm flex-col justify-center space-y-2'>
- <div className='flex flex-col space-y-2 text-start'>
- <h2 className='text-lg font-semibold tracking-tight'>Sign in</h2>
- <p className='text-sm text-muted-foreground'>
- Enter your email and password below <br />
- to log into your account
- </p>
- </div>
- <UserAuthForm />
- <p className='px-8 text-center text-sm text-muted-foreground'>
- By clicking sign in, you agree to our{' '}
- <a
- href='/terms'
- className='underline underline-offset-4 hover:text-primary'
- >
- Terms of Service
- </a>{' '}
- and{' '}
- <a
- href='/privacy'
- className='underline underline-offset-4 hover:text-primary'
- >
- Privacy Policy
- </a>
- .
- </p>
- </div>
- </div>
- <div
- className={cn(
- 'relative h-full overflow-hidden bg-muted max-lg:hidden',
- '[&>img]:absolute [&>img]:top-[15%] [&>img]:left-20 [&>img]:h-full [&>img]:w-full [&>img]:object-cover [&>img]:object-top-left [&>img]:select-none'
- )}
- >
- <img
- src={dashboardLight}
- className='dark:hidden'
- width={1024}
- height={1151}
- alt='Shadcn-Admin'
- />
- <img
- src={dashboardDark}
- className='hidden dark:block'
- width={1024}
- height={1138}
- alt='Shadcn-Admin'
- />
- </div>
- </div>
- )
- }
|