diff --git a/src/components/join-flow/birthdate-step.jsx b/src/components/join-flow/birthdate-step.jsx index 81316fb71..5f098bffc 100644 --- a/src/components/join-flow/birthdate-step.jsx +++ b/src/components/join-flow/birthdate-step.jsx @@ -91,6 +91,7 @@ class BirthDateStep extends React.Component { headerImgSrc="/images/join-flow/birthdate-header.png" innerClassName="join-flow-inner-birthdate-step" title={this.props.intl.formatMessage({id: 'registration.birthDateStepTitle'})} + titleClassName="join-flow-birthdate-title" waiting={isSubmitting} onSubmit={handleSubmit} > diff --git a/src/components/join-flow/country-step.jsx b/src/components/join-flow/country-step.jsx index f5f2c5e80..fbe53a7c4 100644 --- a/src/components/join-flow/country-step.jsx +++ b/src/components/join-flow/country-step.jsx @@ -71,6 +71,7 @@ class CountryStep extends React.Component { headerImgSrc="/images/join-flow/country-header.png" innerClassName="join-flow-inner-country-step" title={this.props.intl.formatMessage({id: 'registration.countryStepTitle'})} + titleClassName="join-flow-country-title" waiting={isSubmitting} onSubmit={handleSubmit} > diff --git a/src/components/join-flow/email-step.jsx b/src/components/join-flow/email-step.jsx index 268b782b3..f2d1e42a3 100644 --- a/src/components/join-flow/email-step.jsx +++ b/src/components/join-flow/email-step.jsx @@ -151,6 +151,7 @@ class EmailStep extends React.Component { innerClassName="join-flow-inner-email-step" nextButton={this.props.intl.formatMessage({id: 'registration.createAccount'})} title={this.props.intl.formatMessage({id: 'registration.emailStepTitle'})} + titleClassName="join-flow-email-title" waiting={this.props.waiting || isSubmitting || this.state.captchaIsLoading} onSubmit={handleSubmit} > diff --git a/src/components/join-flow/join-flow-step.jsx b/src/components/join-flow/join-flow-step.jsx index 301d8652a..27ff6afa8 100644 --- a/src/components/join-flow/join-flow-step.jsx +++ b/src/components/join-flow/join-flow-step.jsx @@ -18,6 +18,7 @@ const JoinFlowStep = ({ nextButton, onSubmit, title, + titleClassName, waiting }) => (