Skip to content

Commit

Permalink
improvement: required fields
Browse files Browse the repository at this point in the history
  • Loading branch information
SQ2CPA committed Mar 8, 2024
1 parent 849d5d7 commit 0868448
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions data_embed/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ <h5>
id="beacon.comment"
class="form-control"
placeholder="LoRa APRS"
required=""
/>
</div>
<div class="col-12 mt-3">
Expand Down Expand Up @@ -320,11 +321,14 @@ <h5>
<small>(in minutes)</small></label
>
<input
type="text"
type="number"
name="wifi.autoAP.powerOff"
id="wifi.autoAP.powerOff"
class="form-control"
placeholder="15"
required=""
step="1"
min="0"
/>
<div class="form-text">
Set to <strong>0</strong> if you don't
Expand Down Expand Up @@ -618,11 +622,14 @@ <h5>
>
<div class="input-group">
<input
type="text"
type="number"
name="other.rememberStationTime"
id="other.rememberStationTime"
placeholder="30"
class="form-control"
required=""
step="1"
min="1"
/>
<span class="input-group-text"
>minutes</span
Expand Down Expand Up @@ -855,11 +862,14 @@ <h5>
>
<div class="input-group">
<input
type="text"
type="number"
name="beacon.interval"
id="beacon.interval"
placeholder="15"
class="form-control"
required=""
step="1"
min="1"
/>
<span class="input-group-text"
>minutes</span
Expand Down Expand Up @@ -1057,13 +1067,15 @@ <h5>
id="lora.txFreq"
placeholder="433775000"
class="form-control"
required=""
/>
<input
type="hidden"
name="lora.iGateFreq"
id="lora.iGateFreq"
placeholder="433775000"
class="form-control"
required=""
/>
<span class="input-group-text"
>Hz</span
Expand Down

0 comments on commit 0868448

Please sign in to comment.