Test your Password Strength using Jquery

To show the password strength to the customer is one of the important concept, because the user will know  how strong our password and it helps to reset the password when the password is poor. The password is one of the very important field to access their profile so the password should be strong so we need to set the strong password. In the below example have the two different strength validation. 

In the first example the strength meter is in below text box it shows how the password strength. It changes the red color when password is poor and also display the text like your password is too weak.when password is four to eight character it shows the message "Could be stronger" and color is yellow. And the password is above 8 character it shows "password is strong" message and color changes as green.

In the second example same text will display like the above example but there is no strength meter in this instead of this meter it changes the border color of the password text field dynamically based on the password strength 

Here i did the validation using character you can set the password validation using combination of the characters and the numbers and special characters by changing the script validation. Check the below example demo page to see the like demo of the below example. I hope this concept is very useful. 


Code for test Password strength:

<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Password strength Indicator using Jquery</title>
<link href="https://fonts.googleapis.com/css?family=PT+Sans+Narrow" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>Password strength Validation Option1:</h1>
<div class="form-container">
<form class="form-1" action="">
<label>Enter password</label>
<input class="input-1" type="password" placeholder="&#8226;&#8226;&#8226;&#8226;&#8226;&#8226;">
<div class="progress-bar_wrap">
<div class="progress-bar_item progress-bar_item-1"></div>
<div class="progress-bar_item progress-bar_item-2"></div>
<div class="progress-bar_item progress-bar_item-3"></div>
</div>
<span class="progress-bar_text">Password is blank</span>
</form>
</div>
<h1>Password strength Validation Option2:</h1>
<div class="form-container">
<form class="form-4" action="">
<label>Enter password</label>
<input class="input-4" type="password" placeholder="&#8226;&#8226;&#8226;&#8226;&#8226;&#8226;">
<span class="progress-bar_text">Password is blank</span>
</form>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script>
<script  src="js/index.js"></script>
</body>
</html>

Post a Comment

0 Comments