drop max code length to 4
All checks were successful
/ build-container (push) Successful in 9m15s

This commit is contained in:
Finn 2024-11-26 13:48:19 -08:00
parent 1340b3167f
commit 6920f9ee24

View file

@ -19,7 +19,7 @@
<script type="text/javascript">
function generateCode() {
let code = "";
while(code.length < 6) {
while(code.length < 4) {
code += Math.round(Math.random()*10);
}
document.querySelector('#code').value = code;