Skip to content

Commit 3236a72

Browse files
authored
Update pin input type to password to mask pin and match dumbwareio products (#33)
1 parent 1a74774 commit 3236a72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

public/login.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ <h2>Enter PIN</h2>
8181

8282
for (let i = 0; i < length; i++) {
8383
const input = document.createElement('input');
84-
input.type = 'text';
84+
input.type = 'password';
8585
input.className = 'pin-digit';
8686
input.maxLength = 1;
8787
input.pattern = '[0-9]';

0 commit comments

Comments
 (0)