per MDN, change type from number to text

This commit is contained in:
filifa 2025-12-11 23:49:34 -05:00
parent e2c6b7f657
commit 5294860fea
1 changed files with 1 additions and 2 deletions

View File

@ -14,7 +14,7 @@
<div id="modulus-box">
<label id="modulus-label" for="modulus">mod</label>
<input id="modulus" required type="number" min="1" step="1" inputmode="none" />
<input id="modulus" required type="text" inputmode="numeric" pattern="\d+" />
</div>
</div>
@ -57,7 +57,6 @@
<button id="enter" type="button"></button>
</div>
</div>
</div>
<script type="module" src="main.js"></script>