Skip to content

Commit e4da79b

Browse files
committed
update 3
1 parent 931cb1e commit e4da79b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Password Strength Meter/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<div class="container">
1313
<header>Password Strength Meter<br></header>
1414
<form action="#">
15-
<div class="field"><input id="trigger" type="password" placeholder="Type your password"><span class="showBtn">SHOW</span></div>
15+
<div class="field"><input id="trigger" class="input" type="password" placeholder="Type your password"><span class="showBtn">SHOW</span></div>
1616
<!--field-->
1717
<div class="indicator">
1818
<span class="weak"></span>

Password Strength Meter/script.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const indicator = document.querySelector(".indicator");
2-
const input = document.querySelector("input");
2+
const input = document.querySelector(".input");
33
const showBtn = document.querySelector(".showBtn")
44
const weak = document.querySelector(".weak");
55
const medium = document.querySelector(".medium");

0 commit comments

Comments
 (0)