improvement: required fields
This commit is contained in:
parent
849d5d7c34
commit
0868448a8c
|
|
@ -160,6 +160,7 @@
|
||||||
id="beacon.comment"
|
id="beacon.comment"
|
||||||
class="form-control"
|
class="form-control"
|
||||||
placeholder="LoRa APRS"
|
placeholder="LoRa APRS"
|
||||||
|
required=""
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12 mt-3">
|
<div class="col-12 mt-3">
|
||||||
|
|
@ -320,11 +321,14 @@
|
||||||
<small>(in minutes)</small></label
|
<small>(in minutes)</small></label
|
||||||
>
|
>
|
||||||
<input
|
<input
|
||||||
type="text"
|
type="number"
|
||||||
name="wifi.autoAP.powerOff"
|
name="wifi.autoAP.powerOff"
|
||||||
id="wifi.autoAP.powerOff"
|
id="wifi.autoAP.powerOff"
|
||||||
class="form-control"
|
class="form-control"
|
||||||
placeholder="15"
|
placeholder="15"
|
||||||
|
required=""
|
||||||
|
step="1"
|
||||||
|
min="0"
|
||||||
/>
|
/>
|
||||||
<div class="form-text">
|
<div class="form-text">
|
||||||
Set to <strong>0</strong> if you don't
|
Set to <strong>0</strong> if you don't
|
||||||
|
|
@ -618,11 +622,14 @@
|
||||||
>
|
>
|
||||||
<div class="input-group">
|
<div class="input-group">
|
||||||
<input
|
<input
|
||||||
type="text"
|
type="number"
|
||||||
name="other.rememberStationTime"
|
name="other.rememberStationTime"
|
||||||
id="other.rememberStationTime"
|
id="other.rememberStationTime"
|
||||||
placeholder="30"
|
placeholder="30"
|
||||||
class="form-control"
|
class="form-control"
|
||||||
|
required=""
|
||||||
|
step="1"
|
||||||
|
min="1"
|
||||||
/>
|
/>
|
||||||
<span class="input-group-text"
|
<span class="input-group-text"
|
||||||
>minutes</span
|
>minutes</span
|
||||||
|
|
@ -855,11 +862,14 @@
|
||||||
>
|
>
|
||||||
<div class="input-group">
|
<div class="input-group">
|
||||||
<input
|
<input
|
||||||
type="text"
|
type="number"
|
||||||
name="beacon.interval"
|
name="beacon.interval"
|
||||||
id="beacon.interval"
|
id="beacon.interval"
|
||||||
placeholder="15"
|
placeholder="15"
|
||||||
class="form-control"
|
class="form-control"
|
||||||
|
required=""
|
||||||
|
step="1"
|
||||||
|
min="1"
|
||||||
/>
|
/>
|
||||||
<span class="input-group-text"
|
<span class="input-group-text"
|
||||||
>minutes</span
|
>minutes</span
|
||||||
|
|
@ -1057,6 +1067,7 @@
|
||||||
id="lora.txFreq"
|
id="lora.txFreq"
|
||||||
placeholder="433775000"
|
placeholder="433775000"
|
||||||
class="form-control"
|
class="form-control"
|
||||||
|
required=""
|
||||||
/>
|
/>
|
||||||
<input
|
<input
|
||||||
type="hidden"
|
type="hidden"
|
||||||
|
|
@ -1064,6 +1075,7 @@
|
||||||
id="lora.iGateFreq"
|
id="lora.iGateFreq"
|
||||||
placeholder="433775000"
|
placeholder="433775000"
|
||||||
class="form-control"
|
class="form-control"
|
||||||
|
required=""
|
||||||
/>
|
/>
|
||||||
<span class="input-group-text"
|
<span class="input-group-text"
|
||||||
>Hz</span
|
>Hz</span
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue