diff --git a/frontend/app/components/Signup/Signup.js b/frontend/app/components/Signup/Signup.js index 622f2841e..fc2dfcec4 100644 --- a/frontend/app/components/Signup/Signup.js +++ b/frontend/app/components/Signup/Signup.js @@ -87,7 +87,7 @@ export default class Signup extends React.Component { return (
-
+ {/*
@@ -108,7 +108,7 @@ export default class Signup extends React.Component {
-
+
*/}
diff --git a/frontend/app/components/Signup/SignupForm/SignupForm.js b/frontend/app/components/Signup/SignupForm/SignupForm.js index 3641dd36d..b8242cc84 100644 --- a/frontend/app/components/Signup/SignupForm/SignupForm.js +++ b/frontend/app/components/Signup/SignupForm/SignupForm.js @@ -74,120 +74,128 @@ export default class SignupForm extends React.Component { const { CAPTCHA_ENABLED } = this.state; return ( -
-
-

Create Account

+
+
+
- <> - {CAPTCHA_ENABLED && ( - this.handleSubmit(token)} - /> - )} -
- {tenants.length > 0 && ( + +
+

+ Create Account +

+
+ <> + {CAPTCHA_ENABLED && ( + this.handleSubmit(token)} + /> + )} +
+ {tenants.length > 0 && ( + + + Email Address + - )} - - - - - - - - - - - - - - - - - - -
-
- By signing up, you agree to our{' '} - - terms of service - {' '} - and{' '} - - privacy policy - - . + + + + + + + + + + + + + + +
+
+ By signing up, you agree to our{' '} + + terms of service + {' '} + and{' '} + + privacy policy + + . +
-
- - {errors && ( -
- {errors.map((error) => ( -
- - - {error} -
-
-
- ))} -
- )} -
+ + {errors && ( +
+ {errors.map((error) => ( +
+ + + {error} +
+
+
+ ))} +
+ )} + + +
Already having an account?{' '} Login
- +
); } }