Hello Devs,
This feature is the latest issue of my newsletter where I am building one complex frontend feature every week.
And share the breakdow...
For further actions, you may consider blocking this person and/or reporting abuse
A "strong" password:
LΓΆl1
Indeed, LΓΆl1 is very strong.
Yeah, except that it's not.
I was just joking bro. :-)
Tbh, the length of a password is the only strength indication. And should be the only criteria you'd enforce.
You'd have a better user experience and strong passwords.
It doesn't matter if a password has a unique character or not. As long as you allow for them then a potential brute forcer has to include them in their tests.
The password pattern I used in the post is generally accepted in the development community.
What I built is an indicator not forcing the user to go one or another way.
Great share!
Thank You!
Great read.
Glad you liked it.
Really interesting post , good job
Thanks for your kind words.
It works fine in my case:
switch (score) {
case 0:
case 1:
case 2:
return "Weak";
case 3:
return "Medium";
case 4:
return "Fine";
case 5:
return "Strong";
default:
return "extra strong";
}