-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (36 loc) · 1.14 KB
/
index.html
File metadata and controls
37 lines (36 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<html>
<head>
<title>LetsRobot Wireless Setup</title>
</head>
<body>
<div id="ssid_search" name="ssid_search">
Visible Networks (SSID):<br/>
<iframe name="search" id="search" src="/cgi-bin/search.py">
</iframe>
</div>
<hr/>
<div id="network_settings" name="network_settings">
<form action="/cgi-bin/set_network.py">
SSID:
<input type="text" name="SSID"><br/>
Password:
<input type="text" name="password"><br/>
<input type="submit" value="Submit">
</form>
</div>
<hr/>
<div id="brightness" name="brightness">
<form action="/cgi-bin/set_brightness.py">
Brightness:
<input type="text" name="brightness">
<input type="submit" value="Submit">
</form>
</div>
<hr/>
<div name="current_connection" id="current_connection">
</div>
<script type="text/javascript">
document.getElementById("current_connection").innerHTML='<object type="text/html" data="/cgi-bin/current.py" ></object>';
</script>
</body>
</html>