feat: add signup link to login and create signup dummy page

This commit is contained in:
Rıdvan Akca
2023-03-02 16:42:50 +03:00
parent e51930d7e1
commit 4e967c5720
6 changed files with 142 additions and 0 deletions

View File

@@ -10,6 +10,7 @@ import * as URLS from 'config/urls';
import { LOGIN } from 'graphql/mutations/login';
import Form from 'components/Form';
import TextField from 'components/TextField';
import { Link } from './style.ee';
function renderFields(props: { loading: boolean }) {
const { loading = false } = props;
@@ -49,6 +50,12 @@ function renderFields(props: { loading: boolean }) {
>
Login
</LoadingButton>
<Typography variant="body1" align='center' mt={3}>
Don't have an Automatisch account yet?
<Link to={URLS.SIGNUP}>Sign Up</Link>
</Typography>
</>
);
};