X-Git-Url: http://git.scottworley.com/vopamoi/blobdiff_plain/f1afad9b15dd2e672dc83bf6469532683f9c33ed..refs/heads/main:/index.html diff --git a/index.html b/index.html index 5ed2498..ea5a244 100644 --- a/index.html +++ b/index.html @@ -1,11 +1,20 @@ -<!doctype html> +<!DOCTYPE html> <html> <head> + <meta charset="utf-8"/> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <title>Vopamoi</title> <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);"> - <input name="taskName"> - </form> + <div id="ui"> + <input id="taskName" name="taskName"> + <div id="tasks"></div> + </div> </body> </html>