We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20110e9 commit d13491fCopy full SHA for d13491f
granddesignsbingo/index.html
@@ -62,7 +62,7 @@
62
<h1>Bingo Card Generator</h1>
63
<div class="controls">
64
<label for="size">Select Bingo Card Size (x by x): </label>
65
- <input type="number" id="size" value="5" min="5" max="10">
+ <input type="number" id="size" value="5" min="3" max="10">
66
<button class="generate-btn" onclick="generateBingoCard()">Generate Bingo Card</button>
67
</div>
68
@@ -124,7 +124,7 @@ <h1>Bingo Card Generator</h1>
124
125
function generateBingoCard() {
126
const size = parseInt(document.getElementById("size").value);
127
- if (isNaN(size) || size < 5 || size > 10) {
+ if (isNaN(size) || size < 3 || size > 10) {
128
alert("Please enter a valid size between 5 and 10.");
129
return;
130
}
0 commit comments