X-Git-Url: http://git.scottworley.com/vopamoi/blobdiff_plain/4546c7b76e0168ef69cf9d046bfdac7fadac5f9d..84849dfaf119d5b7aae614fcae323ee78461d84f:/index.html

diff --git a/index.html b/index.html
index 91908e3..9833510 100644
--- a/index.html
+++ b/index.html
@@ -1,12 +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 BrowserUI.addTask(this);">
+    <div id="ui">
       <input id="taskName" name="taskName">
-    </form>
-    <div id="tasks"></div>
+      <div id="tasks"></div>
+    </div>
   </body>
 </html>