summaryrefslogtreecommitdiffstats
path: root/htdocs/app/gpio-list/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'htdocs/app/gpio-list/index.html')
-rw-r--r--htdocs/app/gpio-list/index.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/htdocs/app/gpio-list/index.html b/htdocs/app/gpio-list/index.html
new file mode 100644
index 0000000..6c0cf1a
--- /dev/null
+++ b/htdocs/app/gpio-list/index.html
@@ -0,0 +1,28 @@
1<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2<html>
3<head>
4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5 <meta name="viewport" content = "height = device-height, width = 420, user-scalable = no" />
6 <title>WebIOPi | GPIO List</title>
7 <script type="text/javascript" src="/webiopi.js"></script>
8 <script type="text/javascript">
9 webiopi().ready(function() {
10 webiopi().Expert().createList("content");
11 w().refreshGPIO(true);
12 });
13 </script>
14 <style type="text/css">
15 button {
16 margin: 2px 2px 2px 2px;
17 width: 50px;
18 }
19
20 .Description {
21 display: inline;
22 }
23 </style>
24</head>
25<body>
26<div id="content"></div>
27</body>
28</html>