aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/site/index.html
diff options
context:
space:
mode:
authorJean-Pierre Appel <jeanpierre.appel01@gmail.com>2023-10-23 01:34:33 -0400
committerJean-Pierre Appel <jeanpierre.appel01@gmail.com>2023-10-23 01:34:33 -0400
commit424be4138123e7d8e2e9fef36c71e1638d4e6b2a (patch)
treebc7339af6966ff78fd3ee7fbfe05c4e7974bb256 /site/index.html
parent7815a927374db87393d104d095b5de8dfd3a3488 (diff)
testing wsgi post
Diffstat (limited to 'site/index.html')
-rw-r--r--site/index.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/site/index.html b/site/index.html
new file mode 100644
index 0000000..24d50d2
--- /dev/null
+++ b/site/index.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>Toggle Online</title>
+ </head>
+ <body>
+ <h1>Toggle Online</h1>
+ Try to beat the computer :)
+ <nav></nav>
+ <button onclick="foo()">Test</button>
+ <main>
+ <section id="options" class="screen">
+ <h2>Options</h2>
+ <label for="graphOrder">Select a number of vertices for a path (0-100):</label>
+ <input type="number" name="graphOrder" id="graphOrder" defaultValue=7 min=0 max=100></input>
+ </section>
+ <section id="game" class="screen">
+ <h2>Game</h2>
+
+ <script src="game.js"></script>
+ </section>
+ </main>
+ </body>
+</html>