-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
71 lines (60 loc) · 1.97 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
const username = document.getElementById("username");
const email = document.getElementById("email");
const password = document.getElementById("password");
const password2= document.getElementById("password2");
function showError(input, message){
const formControl = input.parentElement;
formControl.className = 'form-control error';
const small = formControl.querySelector('small');
small.innerText = message;
}
function showSuccess(input){
const formControl = input.parentElement;
formControl.className = "form-control success";
}
function checkEmail(email){
var re = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
if(re.test(email.value.trim())){
showSuccess(email);
}
else{
showError(email, "Invalid Email Address")
}
}
function checkRequired(inputArray){
inputArray.forEach(function(input){
if(input.value.trim() === ""){
showError(input, `${getFieldName(input)} is required`)
}
else{
showSuccess(input);
}
})
}
function checkLength(input, min, max){
if(input.value.length < min){
showError(input, `${getFieldName(input)} must be atleast ${min} characters`);
}
else if( input.value.length > max){
showError(input, `${getFieldName(input)} must be less than ${max} characters`);
}
else{
showSuccess(input);
}
}
function getFieldName(input){
return input.id.charAt(0).toUpperCase() + input.id.slice(1);
}
function checkPasswordMatch(input, input2){
if(!input.value === input2.value){
showError(input2, "Password does not match enter again")
}
}
form.addEventListener("submit", (e)=>{
e.preventDefault();
checkRequired([username, email, password, password2]);
checkLength(username, 3, 15);
checkLength(password, 6, 25);
checkEmail(email);
checkPasswordMatch(password, password2)
});