Skip to content

Commit 0ef8b90

Browse files
committed
fixed issues
1 parent 607ee34 commit 0ef8b90

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

Password Strength Meter/readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ git clone https://github.com/Ayushparikh-code/Web-dev-mini-projects.git
2929

3030
<h3> Video Demo </h3>
3131

32-
<video controls width="960" alt="">
33-
<source src="">
32+
<video controls width="960" alt="passwordstrength">
33+
<source src="https://user-images.githubusercontent.com/78655439/128182046-f7baacc3-14f4-41b7-a050-3102a5964a84.mp4">
3434
</video>
3535

3636
<br>

Password Strength Meter/script.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ let regExpStrong = /.[!,@,#,$,%,^,&,*,(,)]/;
1414

1515
document.getElementById("trigger").addEventListener("keyup", function() {
1616
if (input.value != "") {
17-
indicator.style.display = "block";
1817
indicator.style.display = "flex";
1918

2019
if (input.value.length <= 3 && (input.value.match(regExpWeak) || input.value.match(regExpMedium) || input.value.match(regExpStrong))) no = 1;

Password Strength Meter/style.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
}
3232

3333
.container form {
34-
margin: 20px 5px 10px 5px;
34+
margin: 20px 5px 10px;
3535
}
3636

3737
form .field {
@@ -70,7 +70,6 @@
7070

7171
form .indicator {
7272
height: 10px;
73-
display: flex;
7473
align-items: center;
7574
justify-content: space-between;
7675
margin: 10px 0;

0 commit comments

Comments
 (0)