Skip to content

Commit

Permalink
Set min/max ranges for the parameters input fields.
Browse files Browse the repository at this point in the history
  • Loading branch information
dnadales committed Jul 6, 2024
1 parent da96b54 commit 8d5aee9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions leios-sim/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,22 +26,22 @@

<div class="col-md-3">
<label for="inputLambda" class="form-label">$$\lambda_{\ }$$</label>
<input type="number" class="form-control" id="input_λ">
<input type="number" min="1" max="15" class="form-control" id="input_λ">
</div>

<div class="col-md-3">
<label for="inputL" class="form-label">$$L_{\ }$$</label>
<input type="number" class="form-control" id="input_L">
<input type="number" min="1" max="15" class="form-control" id="input_L">
</div>

<div class="col-md-3">
<label for="input_f_I" class="form-label">$$f_I$$</label>
<input type="number" min="1" max="5" class="form-control" id="input_f_I">
<input type="number" min="1" max="15" class="form-control" id="input_f_I">
</div>

<div class="col-md-3">
<label for="input_f_E" class="form-label">$$f_E$$</label>
<input type="number" min="1" max="5" class="form-control" id="input_f_E">
<input type="number" min="1" max="15" class="form-control" id="input_f_E">
</div>

<!-- Buttons -->
Expand Down

0 comments on commit 8d5aee9

Please sign in to comment.