diff --git a/ghost/portal/src/components/pages/SignupPage.js b/ghost/portal/src/components/pages/SignupPage.js index 6521f7fdf5..3313cc72e8 100644 --- a/ghost/portal/src/components/pages/SignupPage.js +++ b/ghost/portal/src/components/pages/SignupPage.js @@ -35,10 +35,16 @@ class SignupPage extends React.Component { renderSubmitButton() { const {action, brandColor} = this.context; - const label = (action === 'signup:running') ? 'Sending...' : 'Continue'; + let label = (action === 'signup:running') ? 'Sending...' : 'Continue'; + let retry = false; + if (action === 'signup:failed') { + label = 'Retry'; + retry = true; + } const disabled = (action === 'signup:running') ? true : false; return ( this.handleSignup(e)} disabled={disabled} brandColor={brandColor}