Skip to content

Commit

Permalink
Added password rules for account.samsung.com (#766)
Browse files Browse the repository at this point in the history
* Added password rules for account.samsung.com

Added password rules to ensure a smooth authentication experience for the webpage account.samsung.com by ensuring the generated password includes digits, special characters, and alphabets, and is no longer than 15 characters as required by the website.

* Added minlength requirement to rule for account.samsung.com
  • Loading branch information
rohitpoks authored May 29, 2024
1 parent 4eb7f40 commit 75daa1c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions quirks/password-rules.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
"access.service.gov.uk": {
"password-rules": "minlength: 10; required: lower; required: upper; required: digit; required: special;"
},
"account.samsung.com": {
"password-rules": "minlength: 8; maxlength: 15; required: digit; required: special; required: upper,lower;"
},
"admiral.com": {
"password-rules": "minlength: 8; required: digit; required: [- !\"#$&'()*+,.:;<=>?@[^_`{|}~]]; allowed: lower, upper;"
},
Expand Down

0 comments on commit 75daa1c

Please sign in to comment.