Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
af91c788f3 | ||
|
|
f42f553298 | ||
|
|
f1c47deb22 |
5
.gitignore
vendored
5
.gitignore
vendored
@ -1,3 +1,8 @@
|
||||
node_modules/
|
||||
*/node_modules/
|
||||
*/build/
|
||||
|
||||
**/node_modules/
|
||||
**/build/
|
||||
.DS_Store
|
||||
.env
|
||||
@ -45,9 +45,9 @@ export default function Login() {
|
||||
notify: notifyState,
|
||||
} = useAppSelector((state) => state.auth);
|
||||
const [initialValues, setInitialValues] = React.useState({
|
||||
email: 'admin@flatlogic.com',
|
||||
password: 'c015ebf1',
|
||||
remember: true,
|
||||
email: '',
|
||||
email: '',
|
||||
password: '',
|
||||
});
|
||||
|
||||
const title = 'saveschematest';
|
||||
@ -198,45 +198,7 @@ export default function Login() {
|
||||
<h2 className='text-4xl font-semibold my-4'> saveschematest</h2>
|
||||
</Link>
|
||||
|
||||
<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>
|
||||
{' / '}
|
||||
<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>
|
||||
{/* Credential hints removed */}
|
||||
</CardBox>
|
||||
|
||||
<CardBox className='w-full md:w-3/5 lg:w-2/3'>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user