浏览代码

eliminar verificacion de pin obvio

Erwin Jacimino 6 月之前
父节点
当前提交
77da7d5fa8
共有 1 个文件被更改,包括 0 次插入7 次删除
  1. 0 7
      public/verify.html

+ 0 - 7
public/verify.html

@@ -208,13 +208,6 @@
         return;
       }
       
-      // Validar que no sea un PIN muy obvio
-      const obviousPins = ['1234', '0000', '1111', '2222', '3333', '4444', '5555', '6666', '7777', '8888', '9999'];
-      if (obviousPins.includes(pin)) {
-        showError('Por seguridad, elige un PIN menos obvio');
-        pinInput.focus();
-        return;
-      }
       
       // Deshabilitar el botón mientras se procesa
       submitBtn.disabled = true;