diff options
Diffstat (limited to 'app/view/templates/homeopt.php')
-rw-r--r-- | app/view/templates/homeopt.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app/view/templates/homeopt.php b/app/view/templates/homeopt.php index 27d5625..7f42c8e 100644 --- a/app/view/templates/homeopt.php +++ b/app/view/templates/homeopt.php @@ -116,6 +116,10 @@ </fieldset> + <fieldset> + <legend>Other</legend> + + <?php if ($opt->invert() == 1) { echo '<input type="checkbox" name="invert" value="1" id="invert" checked>'; @@ -124,6 +128,10 @@ } echo '<label for="invert">invert</></br>'; ?> + <input type="number" name="limit" id="limit" value="<?= $opt->limit() ?>" min="0" max="9999"> + <label for="limit">limit</label> + + </fieldset> </div> |