Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sbutz committed Nov 26, 2023
1 parent 467f9f6 commit 1d2c6fd
Show file tree
Hide file tree
Showing 5 changed files with 142 additions and 450 deletions.
17 changes: 11 additions & 6 deletions client/src/views/Login.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { useEffect, useState } from 'react';
import { useNavigate } from 'react-router-dom';
import { Divider, Typography } from '@mui/material';
import Grid from '@mui/material/Unstable_Grid2/Grid2';
import { Divider, Grid, Typography } from '@mui/material';

import FormButton from '../components/FormButton';
import FormField, { FormFieldType } from '../components/FormField';
Expand Down Expand Up @@ -97,14 +96,20 @@ export default function Login() {

return (
<Layout>
<Grid container spacing={5}>
<Grid xs={12} md={5}>
<Grid
container
spacing={{
xs: 5,
md: 0,
}}
>
<Grid item xs={12} md={5}>
<TableLogin />
</Grid>
<Grid xs={12} md={2} justifyContent="center" container>
<Grid item xs={12} md={2} justifyContent="center" container>
<Divider textAlign="center" orientation="vertical" />
</Grid>
<Grid xs={12} md={5}>
<Grid item xs={12} md={5}>
<AdminLogin />
</Grid>
</Grid>
Expand Down
Loading

0 comments on commit 1d2c6fd

Please sign in to comment.