You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
1.8 KiB
91 lines
1.8 KiB
<h1>Device system management</h1> |
|
|
|
<form id="sys-form" action="/sys" data-values-src="/sys"> |
|
<p> |
|
<label>WiFi SSID: |
|
<input type="text" name="ssid"> |
|
</label> |
|
</p> |
|
<p> |
|
<label>WiFi password: |
|
<input type="password" name="wpass"> |
|
</label> |
|
</p> |
|
|
|
<p> |
|
<label class="label">WiFi power saving: |
|
<select class="select" name="wpwsave"> |
|
<option value="0">No</option> |
|
<option value="1">Yes</option> |
|
</select> |
|
</label> |
|
</p> |
|
|
|
<p> |
|
<label class="label">Use static IPv4 address: |
|
<select class="select" name="wstatic"> |
|
<option value="0">No</option> |
|
<option value="1">Yes</option> |
|
</select> |
|
</label> |
|
</p> |
|
|
|
<p> |
|
<label>Address (x.x.x.x): |
|
<input type="text" name="ip" data-ip32> |
|
</label> |
|
</p> |
|
<p> |
|
<label>Gateway (x.x.x.x): |
|
<input type="text" name="gw" data-ip32> |
|
</label> |
|
</p> |
|
<p> |
|
<label>Mask (x.x.x.x): |
|
<input type="text" name="mask" data-ip32> |
|
</label> |
|
</p> |
|
<p> |
|
<label>DNS server (x.x.x.x): |
|
<input type="text" name="dns" data-ip32> |
|
</label> |
|
</p> |
|
|
|
<p> |
|
<label>SNTP server: |
|
<input type="text" name="sntp"> |
|
</label> |
|
</p> |
|
|
|
<p> |
|
<label>Time zone (GNU TZ variable format) : |
|
<input type="text" name="tz"> |
|
</label> |
|
</p> |
|
|
|
<button type="button" class="send">SEND</button> |
|
</form> |
|
|
|
<div class="col-md-offset-1"> |
|
<hr /> |
|
</div> |
|
|
|
<h3>Restore defaults</h3> |
|
<form id="restore-form" action="/sys"> |
|
<input type="hidden" name="restore_default" value="1" /> |
|
<p> |
|
<button type="button" class="send">RESTORE DEFAULT SETTINGS</button> |
|
</p> |
|
</form> |
|
|
|
<div class="col-md-offset-1"> |
|
<hr /> |
|
</div> |
|
|
|
<h3>Reboot</h3> |
|
<form id="reboot-form" action="/sys/reboot"> |
|
<input type="hidden" name="reboot" value="1" /> |
|
<p> |
|
<button type="button" class="send">REBOOT</button> |
|
</p> |
|
</form>
|
|
|