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/LoginForm.js | 142 +++++++++++---------- modern/src/components/registration/RegisterForm.js | 19 ++- 2 files changed, 83 insertions(+), 78 deletions(-) (limited to 'modern/src/components') diff --git a/modern/src/components/registration/LoginForm.js b/modern/src/components/registration/LoginForm.js index 235f0ef..8de8b5e 100644 --- a/modern/src/components/registration/LoginForm.js +++ b/modern/src/components/registration/LoginForm.js @@ -5,8 +5,7 @@ import { useDispatch, useSelector } from 'react-redux'; import { useHistory } from 'react-router-dom'; import { sessionActions } from '../../store'; import t from '../../common/localization'; -import RegisterForm from './RegisterForm'; -import ResetPasswordForm from './ResetPasswordForm'; +import LoginPage from './../../LoginPage'; const useStyles = makeStyles(theme => ({ logoContainer: { @@ -18,12 +17,7 @@ const useStyles = makeStyles(theme => ({ } })); -const forms = { - register: () => RegisterForm, - resetPassword: () => ResetPasswordForm, -}; - -const LoginForm = ({ setCurrentForm }) => { +const LoginForm = () => { const classes = useStyles(); const dispatch = useDispatch(); @@ -34,6 +28,7 @@ const LoginForm = ({ setCurrentForm }) => { const [email, setEmail] = useState(''); const [password, setPassword] = useState(''); const registrationEnabled = useSelector(state => state.session.server ? state.session.server['registration'] : false); + const emailEnabled = useSelector(state => state.session.server ? state.session.server['emailEnabled'] : false); const handleEmailChange = (event) => { setEmail(event.target.value); @@ -56,73 +51,84 @@ const LoginForm = ({ setCurrentForm }) => { } } + const handleSpecialKey = e => { + if (e.keyCode === 13 && email && password) { + handleLogin(e); + } + } + return ( - - {useMediaQuery(theme.breakpoints.down('md')) && - - - - + + + {useMediaQuery(theme.breakpoints.down('md')) && + + + + + + } + + + + + - } - - - - - - - - - - - - - - {t('loginLanguage')} - - + + + + + + + {t('loginLanguage')} + + + + {emailEnabled && + + history.push('/resetpassword')} className={classes.resetPassword} underline="none">{t('loginReset')} + + } - - - setCurrentForm(forms.resetPassword)} className={classes.resetPassword} underline="none">{t('loginReset')} - - - + ) } diff --git a/modern/src/components/registration/RegisterForm.js b/modern/src/components/registration/RegisterForm.js index c2af04b..62605eb 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