63 lines
783 B
HTML
63 lines
783 B
HTML
|
<!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>
|