-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (68 loc) · 2.14 KB
/
index.html
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
72
73
<!DOCTYPE html>
<html>
<head>
<title>Password Strength Check</title>
<link rel="stylesheet" type=" text/css" href="style.css">
</head>
<body>
<div class="container">
<h2>Password Strength Check</h2>
<div class="inputBox">
<input type="Password" placeholder="password" id="myPassword">
<div class="show"></div>
</div>
<div class="strengthMeter"></div>
</div>
<script>
function Strength(password){
let i = 0;
if(password.length > 6){
i++;
}
if(password.length >= 10){
i++;
}
if(/[A-Z]/.test(password)){
i++;
}
if(/[0-9]/.test(password)){
i++;
}
if(/[A-Za-z0-8]/.test(password)){
i++;
}
return i;
}
let container = document.querySelector('.container');
document.addEventListener("keyup",function(e){
let password = document.querySelector('#myPassword').value;
let strength = Strength(password);
if(strength <= 2){
container.classList.add('weak');
container.classList.remove('medium');
container.classList.remove('strong');
} else if(strength >= 2 && strength <= 4){
container.classList.remove('weak');
container.classList.add('medium');
container.classList.remove('strong');
} else {
container.classList.remove('weak');
container.classList.remove('medium');
container.classList.add('strong');
}
})
let pswrd = document.querySelector('#myPassword');
let show = document.querySelector('.show');
show.onclick = function(){
if (pswrd.type === 'password'){
pswrd.setAttribute('type', 'text');
show.classList.add('hide');
}
else{
pswrd.setAttribute('type', 'password');
show.classList.remove('hide');
}
}
</script>
</body>
</html>