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 { withTranslation } from 'react-i18next'; 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 (
{props.t('ResetPasswordView.Submitted')}
{props.t('ResetPasswordView.Login')} {props.t('ResetPasswordView.LoginOr')} {props.t('ResetPasswordView.SignUp')}