diff options
Diffstat (limited to '')
| -rw-r--r-- | web/http/index.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/web/http/index.html b/web/http/index.html new file mode 100644 index 0000000..245205d --- /dev/null +++ b/web/http/index.html | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | <!doctype html> | ||
| 2 | <html lang="en-US"> | ||
| 3 | <head> | ||
| 4 | <meta charset="utf-8" /> | ||
| 5 | <meta name="viewport" content="width=device-width" /> | ||
| 6 | <title>Nissy - H48 solver POC</title> | ||
| 7 | <script type="module" src="./solve.mjs"></script> | ||
| 8 | </head> | ||
| 9 | <body> | ||
| 10 | <input id="scrambleText" placeholder="Type the scramble here..."> | ||
| 11 | <select id="solverSelector"> | ||
| 12 | <option value="h48h0k4" selected="selected">h48 h=0 k=4 (59Mb)</option> | ||
| 13 | <option value="h48h3k2">h48 h=3 k=2 (283Mb)</option> | ||
| 14 | <option value="h48h7k2">h48 h=7 k=2 (3.6Gb)</option> | ||
| 15 | </select> | ||
| 16 | <button id="solveButton">Solve!</button> | ||
| 17 | <p>Solution:</p> | ||
| 18 | <p id="solution"></p> | ||
| 19 | </body> | ||
| 20 | </html> | ||
