- add password strength meter for creating or editing user passwords
Some checks failed
CI Pipeline / japa-tests (push) Failing after 1m0s
Some checks failed
CI Pipeline / japa-tests (push) Failing after 1m0s
- add public opensearch api host
This commit is contained in:
parent
f4854d70b9
commit
010bead723
13 changed files with 392 additions and 23 deletions
|
@ -0,0 +1,26 @@
|
|||
// common passwords as an array of strings
|
||||
|
||||
const commonPasswords = [
|
||||
'123456',
|
||||
'qwerty',
|
||||
'password',
|
||||
'111111',
|
||||
'Abc123',
|
||||
'123456789',
|
||||
'12345678',
|
||||
'123123',
|
||||
'1234567890',
|
||||
'12345',
|
||||
'1234567',
|
||||
'qwertyuiop',
|
||||
'qwerty123',
|
||||
'1q2w3e',
|
||||
'password1',
|
||||
'123321',
|
||||
'Iloveyou',
|
||||
'12345',
|
||||
'test',
|
||||
'test007'
|
||||
];
|
||||
|
||||
export default commonPasswords;
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue