mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-18 16:01:40 +03:00
1bad6dee4e
no-issue
30 lines
1.3 KiB
JavaScript
30 lines
1.3 KiB
JavaScript
import Form from '../components/Form';
|
|
import FormHeader from '../components/FormHeader';
|
|
import FormHeaderCTA from '../components/FormHeaderCTA';
|
|
import FormSubmit from '../components/FormSubmit';
|
|
|
|
import NameInput from '../components/NameInput';
|
|
import EmailInput from '../components/EmailInput';
|
|
import PasswordInput from '../components/PasswordInput';
|
|
import {IconClose} from '../components/icons';
|
|
|
|
export default ({error, handleClose, handleSubmit, showSpinner}) => {
|
|
let label = showSpinner ? 'Signing up...' : 'Confirm payment';
|
|
return (
|
|
<div className="gm-modal-form gm-signup-page">
|
|
<FormHeader title="" error={error} errorText="Email already registered">
|
|
<div className="flex justify-between items-baseline">
|
|
<h1>Sign up</h1>
|
|
<FormHeaderCTA title="Already a member?" label="Log in" hash="#signin" />
|
|
</div>
|
|
</FormHeader>
|
|
<Form onSubmit={handleSubmit}>
|
|
<NameInput bindTo="name" className="first" />
|
|
<EmailInput bindTo="email" />
|
|
<PasswordInput bindTo="password" className="last" />
|
|
<FormSubmit label={label} showSpinner={showSpinner} />
|
|
</Form>
|
|
</div>
|
|
);
|
|
};
|