2677cd17d8
* new signin/signup * cleanup and password reset * new flow working * cleanup * add 'autoComplete' props * fix prop * try to call email/confirm before resetting password * Dont use password reset token for email confirmation. * add password reset * password manager improvements * update lbryinc * cleanup * slightly improve close button on sign up page * moar fixes * fix password autofil Co-authored-by: Mark Beamer Jr <markbeamerjr@gmail.com>
22 lines
600 B
JavaScript
22 lines
600 B
JavaScript
import { connect } from 'react-redux';
|
|
import {
|
|
selectEmailNewErrorMessage,
|
|
selectEmailToVerify,
|
|
doUserCheckIfEmailExists,
|
|
doClearEmailEntry,
|
|
selectEmailDoesNotExist,
|
|
selectEmailAlreadyExists,
|
|
} from 'lbryinc';
|
|
import UserEmailReturning from './view';
|
|
|
|
const select = state => ({
|
|
errorMessage: selectEmailNewErrorMessage(state),
|
|
emailToVerify: selectEmailToVerify(state),
|
|
emailDoesNotExist: selectEmailDoesNotExist(state),
|
|
emailExists: selectEmailAlreadyExists(state),
|
|
});
|
|
|
|
export default connect(select, {
|
|
doUserCheckIfEmailExists,
|
|
doClearEmailEntry,
|
|
})(UserEmailReturning);
|