diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2025-06-09 09:14:54 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2025-06-09 09:14:54 +0200 |
| commit | 7c6ec4625886dc8210b84e5a7597b653261a3115 (patch) | |
| tree | 78e0cec5d9e2e3be97eaf207149db2b3a3f6a9d6 | |
| parent | f1a2985897850321e0a9acb1b74bb41e016deb5c (diff) | |
| download | nissy-core-7c6ec4625886dc8210b84e5a7597b653261a3115.tar.gz nissy-core-7c6ec4625886dc8210b84e5a7597b653261a3115.zip | |
Fix some HTML in web version demo
Diffstat (limited to '')
| -rw-r--r-- | web/http/index.html | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/web/http/index.html b/web/http/index.html index 65b5b18..6bd976b 100644 --- a/web/http/index.html +++ b/web/http/index.html | |||
| @@ -1,8 +1,8 @@ | |||
| 1 | <!doctype html> | 1 | <!doctype html> |
| 2 | <html lang="en-US"> | 2 | <html lang="en-US"> |
| 3 | <head> | 3 | <head> |
| 4 | <meta charset="utf-8" /> | 4 | <meta charset="utf-8"> |
| 5 | <meta name="viewport" content="width=device-width" /> | 5 | <meta name="viewport" content="width=device-width"> |
| 6 | <title>Nissy - H48 solver POC</title> | 6 | <title>Nissy - H48 solver POC</title> |
| 7 | <script type="module" src="./nissyapp.mjs"></script> | 7 | <script type="module" src="./nissyapp.mjs"></script> |
| 8 | </head> | 8 | </head> |
| @@ -10,7 +10,7 @@ | |||
| 10 | <body> | 10 | <body> |
| 11 | 11 | ||
| 12 | <div id="scrambleRaw"> | 12 | <div id="scrambleRaw"> |
| 13 | <input id="scrambleText" placeholder="Type the scramble here..." /> | 13 | <input id="scrambleText" placeholder="Type the scramble here..."> |
| 14 | <select id="solverSelector"> | 14 | <select id="solverSelector"> |
| 15 | <option value="h48h3k2" selected="selected"> | 15 | <option value="h48h3k2" selected="selected"> |
| 16 | h48 h=4 k=2 (300 Mb) - light | 16 | h48 h=4 k=2 (300 Mb) - light |
| @@ -25,21 +25,21 @@ | |||
| 25 | </div> | 25 | </div> |
| 26 | 26 | ||
| 27 | <div id="solverConfiguration"> | 27 | <div id="solverConfiguration"> |
| 28 | <label id="minLabel" for="minSlider">Minimum moves: 0</label><br /> | 28 | <label id="minLabel" for="minSlider">Minimum moves: 0</label><br> |
| 29 | <input id="minMovesSlider" name="minSlider" | 29 | <input id="minMovesSlider" name="minSlider" |
| 30 | type="range" min="0" max="20" value="0" /> | 30 | type="range" min="0" max="20" value="0"> |
| 31 | <br /> | 31 | <br> |
| 32 | <label id="maxLabel" for="maxSlider">Maximum moves: 20</label><br /> | 32 | <label id="maxLabel" for="maxSlider">Maximum moves: 20</label><br> |
| 33 | <input id="maxMovesSlider" name="maxSlider" | 33 | <input id="maxMovesSlider" name="maxSlider" |
| 34 | type="range" min="0" max="20" value="20" /> | 34 | type="range" min="0" max="20" value="20"> |
| 35 | <br /> | 35 | <br> |
| 36 | <label for="maxSolutions">Limit number of solutions to</label> | 36 | <label for="maxSolutions">Limit number of solutions to</label> |
| 37 | <input id="maxSolutions" name="maxSolutions" | 37 | <input id="maxSolutions" name="maxSolutions" |
| 38 | type="number" min="1" max="999" value="1" /> | 38 | type="number" min="1" max="999" value="1"> |
| 39 | <br /> | 39 | <br> |
| 40 | <label for="optimalInput">Above optimal by at most</label> | 40 | <label for="optimalInput">Above optimal by at most</label> |
| 41 | <input id="optimalInput" name="optimal" | 41 | <input id="optimalInput" name="optimal" |
| 42 | type="number" min="0" max="20" value="20" /> | 42 | type="number" min="0" max="20" value="20"> |
| 43 | </div> | 43 | </div> |
| 44 | 44 | ||
| 45 | <div id="confirmDownload" style="display:none"> | 45 | <div id="confirmDownload" style="display:none"> |
