Limit Password Length Using JavaScript

In this article we will try to do Limit Password Length using JavaScript. The code can restrict the inputted user password. The trick is you need to compare the length of textbox and the possible maximum length in the if statement. To learn more about this, just follow the steps below.

Getting started:

First you have to download bootstrap framework, this is the link for the bootstrap that I used for the layout design https://getbootstrap.com/.

The Main Interface

This code contains the interface of the application. To create this just write these block of code inside the text editor and save this as index.html.
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  5. <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
  6. </head>
  7. <nav class="navbar navbar-default">
  8. <div class="container-fluid">
  9. <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  10. </div>
  11. </nav>
  12. <div class="col-md-3"></div>
  13. <div class="col-md-6 well">
  14. <h3 class="text-primary">Limit Password Length Using JavaScript</h3>
  15. <hr style="border-top:1px dotted #ccc;"/>
  16. <div class="col-md-5">
  17. <form>
  18. <div class="form-group">
  19. <label>Username</label>
  20. <input type="text" id="username" class="form-control"/>
  21. </div>
  22. <div class="form-group">
  23. <label>Password</label>
  24. <input type="password" class="form-control" id="password" onkeyup="passwordValidate(this)"/>
  25. </div>
  26. <span id="chk_length" class="alert-danger">X Password must be a 12 characters long</span>
  27. <br /><br />
  28.  
  29. <center><button type="button" id="login" onclick="userLogin();" class="btn btn-primary" disabled="disabled">Login</button></center>
  30. </form>
  31. </div>
  32. </div>
  33. </body>
  34. <script src="js/script.js"></script>
  35. </html>

Creating the Script

This code contains the script of the application. The code will dynamically limit the password length when user click the button. To do this just copy and write these block of codes inside the text editor, then save it as script.js inside the js folder.
  1. function passwordValidate(input){
  2. var chk_length = document.getElementById('chk_length');
  3. var bool_length;
  4. var password = input.value;
  5.  
  6. if(password.length > 12){
  7. chk_length.removeAttribute('class');
  8. chk_length.setAttribute('class', 'alert-success');
  9. chk_length.innerHTML = "&#10004; Password must be a 12 characters long";
  10. bool_length = true;
  11. }else{
  12. chk_length.removeAttribute('class');
  13. chk_length.setAttribute('class', 'alert-danger');
  14. chk_length.innerHTML = "X Password must be a 12 characters long";
  15. bool_length = false;
  16. }
  17.  
  18.  
  19. if(bool_length){
  20. document.getElementById('login').removeAttribute('disabled');
  21. }else{
  22. document.getElementById('login').setAttribute('disabled', 'disabled');
  23. }
  24.  
  25. }
  26.  
  27. function userLogin(){
  28. var username=document.getElementById('username').value;
  29. var password=document.getElementById('password').value;
  30.  
  31. if(username==""){
  32. alert("Username must not be empty");
  33. }else{
  34. alert("You have login!");
  35. window.location='index.html';
  36. }
  37.  
  38. }
There you have it we successfully created a Limit Password Length using JavaScript. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!

Add new comment