Ghost/ghost/members-auth-pages/pages/ResetPasswordPage.js
2019-05-07 17:15:50 +02:00

22 lines
773 B
JavaScript

import FormHeader from '../components/FormHeader';
import PasswordInput from '../components/PasswordInput';
import FormSubmit from '../components/FormSubmit';
import Form from '../components/Form';
const getTokenData = frameLocation => {
const params = new URLSearchParams(frameLocation.query);
const token = params.get('token') || '';
return { token };
};
export default ({ error, frameLocation, handleSubmit }) => (
<div className="gm-modal-form">
<FormHeader title="Reset password" error={error} errorText="Unable to reset password" />
<Form includeData={getTokenData(frameLocation)} onSubmit={handleSubmit}>
<PasswordInput bindTo="password" />
<FormSubmit label="Set password" />
</Form>
</div>
);