Update pin input type to password to mask pin and match dumbwareio products (#33)

This commit is contained in:
Chris
2025-02-21 18:28:38 -08:00
committed by GitHub
parent 1a74774d6a
commit 3236a727ff

View File

@@ -81,7 +81,7 @@
for (let i = 0; i < length; i++) {
const input = document.createElement('input');
input.type = 'text';
input.type = 'password';
input.className = 'pin-digit';
input.maxLength = 1;
input.pattern = '[0-9]';