53 lines
1.5 KiB
JavaScript
53 lines
1.5 KiB
JavaScript
import PropTypes from 'prop-types';
|
|
import React from 'react';
|
|
|
|
import { domOnlyProps } from '../../../utils/reduxFormUtils';
|
|
import Button from '../../../common/Button';
|
|
|
|
function ResetPasswordForm(props) {
|
|
const {
|
|
fields: { email }, handleSubmit, submitting, invalid, pristine
|
|
} = props;
|
|
return (
|
|
<form className="form" onSubmit={handleSubmit(props.initiateResetPassword.bind(this))}>
|
|
<p className="form__field">
|
|
<label htmlFor="email" className="form__label">Email used for registration</label>
|
|
<input
|
|
className="form__input"
|
|
aria-label="email"
|
|
type="text"
|
|
id="email"
|
|
{...domOnlyProps(email)}
|
|
/>
|
|
{email.touched && email.error && <span className="form-error">{email.error}</span>}
|
|
</p>
|
|
<Button
|
|
type="submit"
|
|
disabled={submitting || invalid || pristine || props.user.resetPasswordInitiate}
|
|
>Send Password Reset Email
|
|
</Button>
|
|
</form>
|
|
);
|
|
}
|
|
|
|
ResetPasswordForm.propTypes = {
|
|
fields: PropTypes.shape({
|
|
email: PropTypes.object.isRequired
|
|
}).isRequired,
|
|
handleSubmit: PropTypes.func.isRequired,
|
|
initiateResetPassword: PropTypes.func.isRequired,
|
|
submitting: PropTypes.bool,
|
|
invalid: PropTypes.bool,
|
|
pristine: PropTypes.bool,
|
|
user: PropTypes.shape({
|
|
resetPasswordInitiate: PropTypes.bool
|
|
}).isRequired
|
|
};
|
|
|
|
ResetPasswordForm.defaultProps = {
|
|
submitting: false,
|
|
pristine: true,
|
|
invalid: false
|
|
};
|
|
|
|
export default ResetPasswordForm;
|