WIFI COnfiguration Page #2
This commit is contained in:
parent
8b6a12c811
commit
ff3c796484
63
_FIRMWARE/firmwares/WIFI Configuration Page/index.html
Normal file
63
_FIRMWARE/firmwares/WIFI Configuration Page/index.html
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<body>
|
||||||
|
<head>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
html, body {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
display: table;
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
display: table-cell;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<h2>WIFI Configuration</h2>
|
||||||
|
<a href="#" >Refresh</a>
|
||||||
|
<form>
|
||||||
|
<div class="wifi-list">
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<a href="#" onclick="fillSSID(this.innerHTML)">WifiName</a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
lock
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="wifi-form">
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<label>Name: </label>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<input id="wifi-ssid" type="text"><br>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<label>Password: </label>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<input id="password" type="text"><br>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<input type="submit" value="Connect"><br>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
<script>
|
||||||
|
function fillSSID(value){
|
||||||
|
document.getElementById("wifi-ssid").value = value;
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</body>
|
Loading…
Reference in New Issue
Block a user