import PropTypes from 'prop-types'; import React from 'react'; import { Link } from 'react-router'; import classNames from 'classnames'; import { bindActionCreators } from 'redux'; import { reduxForm } from 'redux-form'; import { Helmet } from 'react-helmet'; import * as UserActions from '../actions'; import ResetPasswordForm from '../components/ResetPasswordForm'; import { validateResetPassword } from '../../../utils/reduxFormUtils'; import Nav from '../../../components/Nav'; function ResetPasswordView(props) { const resetPasswordClass = classNames({ 'reset-password': true, 'reset-password--submitted': props.user.resetPasswordInitiate, 'form-container': true, 'user': true }); return (
Your password reset email should arrive shortly. If you don't see it, check in your spam folder as sometimes it can end up there.
Log In or Sign Up