Skip to content

Commit

Permalink
Channel selection via drop down selector instead of free text field
Browse files Browse the repository at this point in the history
  • Loading branch information
seeul8er committed Jan 25, 2025
1 parent 3adc065 commit b135839
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,21 @@ <h3>Wi-Fi</h3>
<div class="row">
<div id="ap_channel_div" class="six columns">
<label for="ap_channel">Channel</label>
<input type="text" name="ap_channel" value="" id="ap_channel">
<select id="ap_channel" name="ap_channel" form="settings_form">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
<option value="13">13</option>
</select>
</div>
<div class="six columns" id="ap_ip_div">
<label for="ap_ip">Gateway IP address</label>
Expand Down

0 comments on commit b135839

Please sign in to comment.