Reconstructed Android native HTML skeletal app.
git-svn-id: https://robotics.mvla.net/svn/frc971/2013/trunk/src@3901 f308d9b7-e957-4cde-b6ac-9a88185e7312
diff --git a/scout/proto1/assets/index.html b/scout/proto1/assets/index.html
new file mode 100644
index 0000000..a1e10e4
--- /dev/null
+++ b/scout/proto1/assets/index.html
@@ -0,0 +1,13 @@
+<html>
+<head>
+ <meta name="viewport" content="width=device-width,user-scalable=no" />
+ <title>971 Scout</title>
+</head>
+<body onload="window.frc.info('Howdy!');">
+ <h3>971 Scout</h3>
+ <input type="text" id="ib"><br />
+ <button onclick="window.frc.info(document.getElementById('ib').value);">Log Info</button>
+ <button onclick="window.frc.error(document.getElementById('ib').value);">Log Error</button><br />
+ <button onclick="if (window.confirm('Exit now?')) window.frc.exitApp();">Exit This App</button><br />
+</body>
+</html>