Ghost/ghost/members-api/static/auth/pages/PasswordResetSentPage.js
Rish bc889ae9a0 Refactored members auth flow with dynamic settings
no issue

- Updated members auth flow UI
- Updated members settings and routing to be dynamic
2019-05-07 17:35:17 +02:00

17 lines
644 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import FormHeader from '../components/FormHeader';
import FormSubmit from '../components/FormSubmit';
import Form from '../components/Form';
export default ({ error, handleSubmit }) => (
<div className="gm-modal-form">
<FormHeader title="Reset password" error={error} errorText="Unable to send email" />
<Form bindTo="request-password-reset" onSubmit={handleSubmit}>
<div className="gm-reset-sent">
<p>Weve sent a recovery email to your inbox. Follow the link in the email to reset your password.</p>
</div>
<FormSubmit label="Close" />
</Form>
</div>
);