Skip to content

Commit

Permalink
WiFiAP Active switch added
Browse files Browse the repository at this point in the history
  • Loading branch information
richonguzman committed Oct 7, 2024
1 parent 0a79b64 commit 2bd6844
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
15 changes: 15 additions & 0 deletions data_embed/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1465,6 +1465,21 @@ <h5>
</div>
<div class="col-lg-9 col-sm-12">
<div class="col-12">
<div class="form-check form-switch">
<input
type="checkbox"
name="wifi.autoAP.active"
id="wifi.autoAP.active"
class="form-check-input"
/>
<label
for="wifi.autoAP.active"
class="form-label"
>WiFi AP Active<small> (Caution: Not Active means No WebUI Configuration)</small></label
>
</div>
</div>
<div class="col-12 mt-3">
<label
for="wifi.autoAP.password"
class="form-label"
Expand Down
1 change: 1 addition & 0 deletions data_embed/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ function loadSettings(settings) {
document.getElementById("other.rebootModeTime").value = settings.other.rebootModeTime;

// WiFi Auto AP
document.getElementById("wifi.autoAP.active").checked = settings.wifi.autoAP.active;
document.getElementById("wifi.autoAP.password").value = settings.wifi.autoAP.password;
document.getElementById("wifi.autoAP.timeout").value = settings.wifi.autoAP.timeout;

Expand Down

0 comments on commit 2bd6844

Please sign in to comment.