From 2bbb45f8234b07f5c9b40e98650b2a6eead352c1 Mon Sep 17 00:00:00 2001 From: Ashutosh Bishnoi Date: Tue, 15 Jun 2021 14:11:17 +0530 Subject: Fixed login screen issues --- modern/src/components/registration/RegisterForm.js | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'modern/src/components/registration/RegisterForm.js') diff --git a/modern/src/components/registration/RegisterForm.js b/modern/src/components/registration/RegisterForm.js index c2af04ba..62605eb3 100644 --- a/modern/src/components/registration/RegisterForm.js +++ b/modern/src/components/registration/RegisterForm.js @@ -1,7 +1,8 @@ import React, { useState } from 'react'; import { Grid, Button, TextField, Typography, Link, makeStyles, Snackbar } from '@material-ui/core'; +import { useHistory } from 'react-router-dom'; import ArrowBackIcon from '@material-ui/icons/ArrowBack'; -import LoginForm from './LoginForm'; +import LoginPage from './../../LoginPage'; import t from './../../common/localization'; const useStyles = makeStyles(theme => ({ @@ -17,13 +18,11 @@ const useStyles = makeStyles(theme => ({ } })); -const forms = { - login: () => LoginForm, -}; - -const RegisterForm = ({ setCurrentForm }) => { +const RegisterForm = () => { const classes = useStyles(); + const history = useHistory(); + const [name, setName] = useState(''); const [email, setEmail] = useState(''); const [password, setPassword] = useState(''); @@ -46,18 +45,18 @@ const RegisterForm = ({ setCurrentForm }) => { } return ( - <> + setCurrentForm(forms.login)} + onClose={() => history.push('/login')} autoHideDuration={6000} message={t('loginCreated')} /> - setCurrentForm(forms.login)}> + history.push('/login')}> @@ -115,7 +114,7 @@ const RegisterForm = ({ setCurrentForm }) => { - + ) } -- cgit v1.2.3