JavaScript - Restricting Password Length

In this tutorial we will create a Restricting Password Length using JavaScript. This code will automatically validate the password input when user enter some value in the textbox. The code itself use onkeyup() to initiate a function that will validate the password if whether the character length is acceptable to registered This code is free to use, you can modify it as your own, We will be using JavaScript as a server-side scripting language because It allows greater control of your web page behavior than HTML alone. It is embedded in HTML that responsible to allow user to interact with the computer .

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">JavaScript - Restricting Password Length</h3>
  15.                 <hr style="border-top:1px dotted #ccc;"/>
  16.                 <div class="col-md-3"></div>
  17.                 <div class="col-md-6">
  18.                         <form>
  19.                                 <div class="form-group">
  20.                                         <label>Username</label>
  21.                                         <input type="text" id="username" class="form-control"/>
  22.                                 </div>
  23.                                 <div class="form-group">
  24.                                         <label>Password</label>
  25.                                         <input type="password" class="form-control" id="password" onkeyup="passwordValidate(this)"/>
  26.                                 </div>
  27.                                 <span id="chk_length" class="alert-danger">X Password must be a 12 characters long</span>
  28.                                 <br /><br />
  29.                                
  30.                                 <center><button type="button" id="register" onclick="registerUser();" class="btn btn-primary" disabled="disabled">Register</button></center>
  31.                         </form>
  32.                 </div>
  33.         </div>
  34. </body>
  35. <script src="js/script.js"></script>
  36. </html>

Creating the Script

This code contains the script of the application. This code will automatically validate form inputs when the inputs is entered. 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('register').removeAttribute('disabled');
  21.         }else{
  22.                 document.getElementById('register').setAttribute('disabled', 'disabled');
  23.         }
  24.        
  25. }
  26.  
  27. function registerUser(){
  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 registered!");
  35.                 window.location='index.html';
  36.         }
  37.        
  38. }
There you have it we successfully created a Restricting 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