X-Git-Url: http://git.scottworley.com/vopamoi/blobdiff_plain/974848d36d6c4f1b171bd990f3d5659cb0e8134d..4c532769ab489589eeb7ece02dbbc798d13c47f2:/index.html

diff --git a/index.html b/index.html
index 5721f96..2714223 100644
--- a/index.html
+++ b/index.html
@@ -2,10 +2,16 @@
 <html>
   <head>
     <script src="vopamoi.js" defer="true"></script>
+    <link rel="stylesheet" href="vopamoi.css"/>
+    <style id="viewStyle">
+      .task:not([data-state=todo]) { display: none }
+      :root { --view-state-indicator-color: white; }
+    </style>
   </head>
-  <body>
-    <form onsubmit="return browserCreateTask(this);">
-      <input name="taskName">
-    </form>
+  <body onload="browserInit();">
+    <div id="ui">
+      <input id="taskName" name="taskName">
+      <div id="tasks"></div>
+    </div>
   </body>
 </html>