From 3eb0c39aaf37c0e7e0f9368c8382150e7577c618 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Fri, 1 Dec 2023 18:05:55 +0530 Subject: [PATCH 01/62] uppercase letter fix --- src/signup/RegistrationForm.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/signup/RegistrationForm.vue b/src/signup/RegistrationForm.vue index 38faebc2..eaee88d1 100644 --- a/src/signup/RegistrationForm.vue +++ b/src/signup/RegistrationForm.vue @@ -198,7 +198,7 @@ export default { passwordRules: [ { message: 'At least 6 characters.', regex: /.{6,}/ }, { message: 'Lowercase letters: a-z.', regex: /[a-z]+/ }, - { message: 'Uppercase letters: a-z.', regex: /[A-Z]+/ }, + { message: 'Uppercase letters: A-Z.', regex: /[A-Z]+/ }, { message: 'One number required.', regex: /[0-9]+/ }, ], isUsernameAvailable: false, -- GitLab From 289caa79c22ead70d0c651e2b541d571301abfa8 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Fri, 1 Dec 2023 18:15:59 +0530 Subject: [PATCH 02/62] validate username on submit --- src/signup/RegistrationForm.vue | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/signup/RegistrationForm.vue b/src/signup/RegistrationForm.vue index eaee88d1..8acb4373 100644 --- a/src/signup/RegistrationForm.vue +++ b/src/signup/RegistrationForm.vue @@ -268,9 +268,7 @@ export default { } else if (!isEnoughCharacters) { this.usernameValidationMessage = t(this.appName, 'Username must be at least 3 characters long.') this.validation.isUsernameNotValid = true - } else { - this.checkUsername() - } + } }, async checkUsername() { @@ -293,7 +291,7 @@ export default { }, submitRegistrationForm() { this.validateForm(['displayname', 'username', 'password', 'repassword', 'termsandservices']) - + this.checkUsername() const isFormValid = Object.values(this.validation).every(value => !value) if (isFormValid) { -- GitLab From e57912a2561cc4ac6272b6dcba1fc7c7f2d2f87e Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Fri, 1 Dec 2023 18:18:03 +0530 Subject: [PATCH 03/62] validate username on submit --- src/signup/RegistrationForm.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/signup/RegistrationForm.vue b/src/signup/RegistrationForm.vue index 8acb4373..ba5395c4 100644 --- a/src/signup/RegistrationForm.vue +++ b/src/signup/RegistrationForm.vue @@ -268,7 +268,7 @@ export default { } else if (!isEnoughCharacters) { this.usernameValidationMessage = t(this.appName, 'Username must be at least 3 characters long.') this.validation.isUsernameNotValid = true - } + } }, async checkUsername() { -- GitLab From 890522b2cf98be013b8f8ae20a81be06da192f6f Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Mon, 4 Dec 2023 11:56:47 +0530 Subject: [PATCH 04/62] select drop --- src/signup/RegistrationForm.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/signup/RegistrationForm.vue b/src/signup/RegistrationForm.vue index ba5395c4..501f4979 100644 --- a/src/signup/RegistrationForm.vue +++ b/src/signup/RegistrationForm.vue @@ -6,7 +6,7 @@ {{ t(appName,'Create Murena Account') }}
- @@ -316,6 +316,11 @@ export default { .padding-0 { padding: 0; } +.lang-select { + font-size: 14px; + line-weight:24px; + color: rgba(0, 0, 0, 0.8); +} .fields input[type='checkbox'].checkbox + label:before{ height: 15px; width: 15px; -- GitLab From 26ab41dbbde539c67598163a3441cc906bd6870f Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Mon, 4 Dec 2023 12:13:04 +0530 Subject: [PATCH 05/62] select drop --- img/expand_more.svg | 3 +++ src/signup/RegistrationForm.vue | 5 +++-- 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 img/expand_more.svg diff --git a/img/expand_more.svg b/img/expand_more.svg new file mode 100644 index 00000000..5227f5d1 --- /dev/null +++ b/img/expand_more.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/signup/RegistrationForm.vue b/src/signup/RegistrationForm.vue index 501f4979..e6d48204 100644 --- a/src/signup/RegistrationForm.vue +++ b/src/signup/RegistrationForm.vue @@ -318,8 +318,9 @@ export default { } .lang-select { font-size: 14px; - line-weight:24px; - color: rgba(0, 0, 0, 0.8); + line-height:24px; + color: rgba(0, 0, 0, 0.6); + background: url("../img/expand_more.svg") no-repeat right 8px center } .fields input[type='checkbox'].checkbox + label:before{ height: 15px; -- GitLab From cc16490c6d9b4e5d39ff1dbfd4357c70fc7f4bec Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Mon, 4 Dec 2023 12:15:06 +0530 Subject: [PATCH 06/62] select drop --- src/signup/RegistrationForm.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/signup/RegistrationForm.vue b/src/signup/RegistrationForm.vue index e6d48204..5d6e0897 100644 --- a/src/signup/RegistrationForm.vue +++ b/src/signup/RegistrationForm.vue @@ -320,7 +320,7 @@ export default { font-size: 14px; line-height:24px; color: rgba(0, 0, 0, 0.6); - background: url("../img/expand_more.svg") no-repeat right 8px center + background: url("../../img/expand_more.svg") no-repeat right 8px center } .fields input[type='checkbox'].checkbox + label:before{ height: 15px; -- GitLab From 301c665c61e14dea2c7ed2f177fa2deb60ebb7c3 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Mon, 4 Dec 2023 12:34:11 +0530 Subject: [PATCH 07/62] select drop --- src/signup/RegistrationForm.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/signup/RegistrationForm.vue b/src/signup/RegistrationForm.vue index 5d6e0897..f06241c4 100644 --- a/src/signup/RegistrationForm.vue +++ b/src/signup/RegistrationForm.vue @@ -320,7 +320,12 @@ export default { font-size: 14px; line-height:24px; color: rgba(0, 0, 0, 0.6); - background: url("../../img/expand_more.svg") no-repeat right 8px center + font-weight:400; + background: url("../../img/expand_more.svg") no-repeat right 8px center; + float: right; + position: absolute; + top: 54px; + right: 0; } .fields input[type='checkbox'].checkbox + label:before{ height: 15px; -- GitLab From 6c0ade734f38bebbf5140966cec60dc2fb9f2bac Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Mon, 4 Dec 2023 12:41:43 +0530 Subject: [PATCH 08/62] select drop --- src/signup/RegistrationForm.vue | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/signup/RegistrationForm.vue b/src/signup/RegistrationForm.vue index f06241c4..b8847c45 100644 --- a/src/signup/RegistrationForm.vue +++ b/src/signup/RegistrationForm.vue @@ -1,17 +1,17 @@