Remove several elements on login page

This commit is contained in:
Flatlogic Bot 2025-03-07 10:15:49 +00:00
parent e6316ed9e2
commit 9a35d292f7

View File

@ -195,28 +195,6 @@ const title = 'Welcome';
</Link> </Link>
<div className='flex flex-row text-gray-500 justify-between'> <div className='flex flex-row text-gray-500 justify-between'>
<div>
<p className='mb-2'>
Use{' '}
<code
className={`cursor-pointer ${textColor} `}
onClick={(e) => setLogin(e.target)}
>
admin@flatlogic.com
</code>{' '}
to login as Admin
</p>
<p>
Use{' '}
<code
className={`cursor-pointer ${textColor} `}
onClick={(e) => setLogin(e.target)}
>
client@hello.com
</code>{' '}
to login as User
</p>
</div>
<div> <div>
<BaseIcon <BaseIcon
className={`${iconsColor}`} className={`${iconsColor}`}
@ -237,18 +215,6 @@ const title = 'Welcome';
> >
<Form> <Form>
<div className={'flex justify-between'}>
<FormCheckRadio type='checkbox' label='Remember'>
<Field type='checkbox' name='remember' />
</FormCheckRadio>
<Link
className={`${textColor} text-blue-600`}
href={'/forgot'}
>
Forgot password?
</Link>
</div>
<BaseDivider /> <BaseDivider />