diff options
author | pommicket <pommicket@gmail.com> | 2024-08-14 11:20:22 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2024-08-14 11:20:22 -0400 |
commit | 8664ecfef8df4c1e2103a52d628f2693eefb6f89 (patch) | |
tree | 2f89b89c509a1467c7ca3d73fdd944226b2ade13 /index.html | |
parent | db63e7ada26e2aacbbaa3bf9a44fdafed9032c9e (diff) |
index.html
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 18 |
1 files changed, 14 insertions, 4 deletions
@@ -9,9 +9,19 @@ <link rel="stylesheet" href="style.css"> <script src="index.js"></script> </head> -<body> - <button id="host">host</button> - <input id="code" type="text"> - <button id="join">join</button> +<body class="margined"> + <h3>jigsaw</h3> + <form id="host-form" method="dialog" action="#"> + <div class="form-line"><label><input type="number" min="10" max="1000" name="pieces" value="100"> š§© Number of pieces</label></div> + <div class="form-line"> + <fieldset> + <legend>Choose your imageā¦</legend> + <label><input name="image" type="radio" value="custom" id="custom-image" checked>Custom image URL</label> <input type="text" id="image-url" name="image-url" placeholder="Enter image URL..."><br> + <label><input name="image" type="radio" value="randomFeaturedWikimedia">Random featured Wikimedia Commons image</label><br> + <label><input name="image" type="radio" value="wikimediaPotd">Wikimedia Commons Picture of the Day</label><br> + </fieldset> + </div> + <input value="Host puzzle" type="submit"> + </form> </body> </html> |