diff --git a/ghost/signup-form/src/components/pages/FormPage.tsx b/ghost/signup-form/src/components/pages/FormPage.tsx index fe10ebb0a3..8083cd0da1 100644 --- a/ghost/signup-form/src/components/pages/FormPage.tsx +++ b/ghost/signup-form/src/components/pages/FormPage.tsx @@ -16,10 +16,10 @@ export const FormPage: React.FC = () => { const description = options.description; const logo = options.logo; - return
+ return
{logo && {title}} - {title &&

{title}

} - {description &&

{description}

} + {title &&

{title}

} + {description &&

{description}

}
; @@ -54,15 +54,15 @@ const Form: React.FC = () => { } }; - const borderStyle = error ? 'border-red-500' : 'border-grey-500'; + const borderStyle = error ? '!border-red-500' : 'border-grey-300'; return ( -
- - setEmail(e.target.value)}/> - + <> + + setEmail(e.target.value)}/> + {error &&

{error}

} -
+ ); }; diff --git a/ghost/signup-form/src/components/pages/SuccessPage.tsx b/ghost/signup-form/src/components/pages/SuccessPage.tsx index 42676bd9d1..c19d973c83 100644 --- a/ghost/signup-form/src/components/pages/SuccessPage.tsx +++ b/ghost/signup-form/src/components/pages/SuccessPage.tsx @@ -14,8 +14,8 @@ export const SuccessPage: React.FC = ({email}) => {

Now check your email!

; } - return
-

Now check your email!

-

An email has been send to {email}.

+ return
+

Now check your email!

+

An email has been send to {email}.

; };