Email and password validation in javascript

Learn how to create a password validation form with CSS and JavaScript.

Password Validation

Try it Yourself »

Create A Password Validation Form

Step 1] Add HTML:

Example


 
    Username
   

    Password
 

   
 


 

Password must contain the following:


 

A lowercase letter


 

A capital [uppercase] letter


 

A number


 

Minimum 8 characters


Note: We use the pattern attribute [with a regular expression] inside the password field to set a restriction for submitting the form: it must contain 8 or more characters that are of at least one number, and one uppercase and lowercase letter.

Step 2] Add CSS:

Style the input fields and the message box:

Example

/* Style all input fields */
input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
}

/* Style the submit button */
input[type=submit] {
  background-color: #04AA6D;
  color: white;
}

/* Style the container for inputs */
.container {
  background-color: #f1f1f1;
  padding: 20px;
}

/* The message box is shown when the user clicks on the password field */
#message {
  display:none;
  background: #f1f1f1;
  color: #000;
  position: relative;
  padding: 20px;
  margin-top: 10px;
}

#message p {
  padding: 10px 35px;
  font-size: 18px;
}

/* Add a green text color and a checkmark when the requirements are right */
.valid {
  color: green;
}

.valid:before {
  position: relative;
  left: -35px;
  content: "✔";
}

/* Add a red text color and an "x" icon when the requirements are wrong */
.invalid {
  color: red;
}

.invalid:before {
  position: relative;
  left: -35px;
  content: "✖";
}

Step 3] Add JavaScript:

Example


var myInput = document.getElementById["psw"];
var letter = document.getElementById["letter"];
var capital = document.getElementById["capital"];
var number = document.getElementById["number"];
var length = document.getElementById["length"];

// When the user clicks on the password field, show the message box
myInput.onfocus = function[] {
  document.getElementById["message"].style.display = "block";
}

// When the user clicks outside of the password field, hide the message box
myInput.onblur = function[] {
  document.getElementById["message"].style.display = "none";
}

// When the user starts to type something inside the password field
myInput.onkeyup = function[] {
  // Validate lowercase letters
  var lowerCaseLetters = /[a-z]/g;
  if[myInput.value.match[lowerCaseLetters]] {
    letter.classList.remove["invalid"];
    letter.classList.add["valid"];
  } else {
    letter.classList.remove["valid"];
    letter.classList.add["invalid"];
}

  // Validate capital letters
  var upperCaseLetters = /[A-Z]/g;
  if[myInput.value.match[upperCaseLetters]] {
    capital.classList.remove["invalid"];
    capital.classList.add["valid"];
  } else {
    capital.classList.remove["valid"];
    capital.classList.add["invalid"];
  }

  // Validate numbers
  var numbers = /[0-9]/g;
  if[myInput.value.match[numbers]] {
    number.classList.remove["invalid"];
    number.classList.add["valid"];
  } else {
    number.classList.remove["valid"];
    number.classList.add["invalid"];
  }

  // Validate length
  if[myInput.value.length >= 8] {
    length.classList.remove["invalid"];
    length.classList.add["valid"];
  } else {
    length.classList.remove["valid"];
    length.classList.add["invalid"];
  }
}

Try it Yourself »

Tip: Go to our HTML Form Tutorial to learn more about HTML Forms.



How do I validate an email address in JavaScript?

How to validate email using JavaScript.
Uppercase and lowercase letters [A-Z and a-z].
Numeric characters [0-9].
Special characters - ! # $ % & ' * + - / = ? ^ _ ` { | } ~.
Period, dot, or full stop [.] with the condition that it cannot be the first or last letter of the email and cannot repeat one after another..

How do I know my JavaScript username and password?

The user will not be forwarded to the next page until given values are correct..
.
function validateform[]{.
var name=document.myform.name.value;.
var password=document.myform.password.value;.
if [name==null || name==""]{.
alert["Name can't be blank"];.
return false;.
}else if[password.length

Chủ Đề