diff --git a/packages/dashboard-v2/src/pages/auth/signup.js b/packages/dashboard-v2/src/pages/auth/signup.js index 4da915f1..e8e67354 100644 --- a/packages/dashboard-v2/src/pages/auth/signup.js +++ b/packages/dashboard-v2/src/pages/auth/signup.js @@ -73,11 +73,17 @@ const SignUpPage = () => { {settings.isSubscriptionRequired ? : } {state !== State.Success && ( - setState(State.Success)} onFailure={() => setState(State.Failure)} /> + <> + setState(State.Success)} onFailure={() => setState(State.Failure)} /> + +

+ Already have an account? Sign in +

+ )} {state === State.Success && ( -
+

Please check your inbox and confirm your email address.

You will be redirected to your dashboard shortly.

Click here to go there now. @@ -89,10 +95,6 @@ const SignUpPage = () => { )} )} - -

- Already have an account? Sign in -

);