WIFI COnfiguration Page #2

This commit is contained in:
JonatanRek 2019-12-01 14:22:08 +01:00
parent 8b6a12c811
commit ff3c796484
1 changed files with 63 additions and 0 deletions

View 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>