From 9c4c9635a0ea74eedfbe18fe0cc0b2a0c4130b0f Mon Sep 17 00:00:00 2001 From: Pranav Date: Thu, 6 Nov 2025 18:59:44 -0800 Subject: [PATCH] Remove captcha, repeat password etc --- .../auth/signup/components/Signup/Form.vue | 392 +++++++++--------- config/installation_config.yml | 4 + .../super_admin/app_configs_controller.rb | 2 +- 3 files changed, 207 insertions(+), 191 deletions(-) diff --git a/app/javascript/v3/views/auth/signup/components/Signup/Form.vue b/app/javascript/v3/views/auth/signup/components/Signup/Form.vue index 6a4497948..16b7020de 100644 --- a/app/javascript/v3/views/auth/signup/components/Signup/Form.vue +++ b/app/javascript/v3/views/auth/signup/components/Signup/Form.vue @@ -1,7 +1,9 @@ - @@ -233,47 +243,49 @@ export default { :placeholder="$t('SET_NEW_PASSWORD.PASSWORD.PLACEHOLDER')" :has-error="v$.credentials.password.$error" aria-describedby="password-requirements" - @blur="v$.credentials.password.$touch" + @focus="isPasswordFocused = true" + @blur="handlePasswordBlur" />
- +
+ -