X-Git-Url: http://git.scottworley.com/vopamoi/blobdiff_plain/75a42da4667eceebea699c52d85fa4b7c3e6a0bc..8e0dd97e0d4b07448bb1bde4f109e5192df1aa77:/index.html

diff --git a/index.html b/index.html
index afb9231..9833510 100644
--- a/index.html
+++ b/index.html
@@ -1,11 +1,18 @@
 <!doctype html>
 <html>
   <head>
+    <meta charset="utf-8"/>
     <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 onload="browserInit();">
-    <form onsubmit="return browserCreateTask(this);">
+    <div id="ui">
       <input id="taskName" name="taskName">
-    </form>
+      <div id="tasks"></div>
+    </div>
   </body>
 </html>