Compare commits

...

3 Commits

Author SHA1 Message Date
Flatlogic Bot
af91c788f3 Revert to version f1c47de 2025-04-10 11:48:10 +00:00
Flatlogic Bot
f42f553298 add likes entity 2025-04-10 11:46:49 +00:00
Flatlogic Bot
f1c47deb22 upd login page 2025-04-10 11:40:50 +00:00
2 changed files with 9 additions and 42 deletions

5
.gitignore vendored
View File

@ -1,3 +1,8 @@
node_modules/ node_modules/
*/node_modules/ */node_modules/
*/build/ */build/
**/node_modules/
**/build/
.DS_Store
.env

View File

@ -45,9 +45,9 @@ export default function Login() {
notify: notifyState, notify: notifyState,
} = useAppSelector((state) => state.auth); } = useAppSelector((state) => state.auth);
const [initialValues, setInitialValues] = React.useState({ const [initialValues, setInitialValues] = React.useState({
email: 'admin@flatlogic.com', email: '',
password: 'c015ebf1', email: '',
remember: true, password: '',
}); });
const title = 'saveschematest'; const title = 'saveschematest';
@ -198,45 +198,7 @@ export default function Login() {
<h2 className='text-4xl font-semibold my-4'> saveschematest</h2> <h2 className='text-4xl font-semibold my-4'> saveschematest</h2>
</Link> </Link>
<div className='flex flex-row text-gray-500 justify-between'> {/* Credential hints removed */}
<div>
<p className='mb-2'>
Use{' '}
<code
className={`cursor-pointer ${textColor} `}
onClick={(e) => setLogin(e.target)}
>
admin@flatlogic.com
</code>
{' / '}
<code className={`${textColor}`}>c015ebf1</code>
{' / '}
to login as Admin
</p>
<p>
Use{' '}
<code
className={`cursor-pointer ${textColor} `}
onClick={(e) => setLogin(e.target)}
>
client@hello.com
</code>
{' / '}
<code className={`${textColor}`}>63a043cc2150</code>
{' / '}
to login as User
</p>
</div>
<div>
<BaseIcon
className={`${iconsColor}`}
w='w-16'
h='h-16'
size={48}
path={mdiInformation}
/>
</div>
</div>
</CardBox> </CardBox>
<CardBox className='w-full md:w-3/5 lg:w-2/3'> <CardBox className='w-full md:w-3/5 lg:w-2/3'>