diff options
author | Florrie <towerofnix@gmail.com> | 2019-12-20 17:46:21 -0400 |
---|---|---|
committer | Florrie <towerofnix@gmail.com> | 2019-12-20 17:46:21 -0400 |
commit | 6fe5b85f8ce201d618a9c7c175d7502c2ff8c395 (patch) | |
tree | edbe264b31213d6ee2f5087507f4f1557f17864d /src/index.html | |
parent | 5ec73fd9d3a6018945464565fac5de9efe05466d (diff) |
begin the site!
Diffstat (limited to 'src/index.html')
-rw-r--r-- | src/index.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..d6f887e --- /dev/null +++ b/src/index.html @@ -0,0 +1,34 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"> + <title>scratchblocks 3 generator</title> + <script src="https://scratchblocks.github.io/js/scratchblocks-v3.4-min.js"></script> + </head> + <body> + <div id="container"> + <h1>scratchblocks 3 generator</h1> + <div id="setup-step"> + <form id="form"> + <div id="url-input-container"> + <input id="url-input" type="text" placeholder="https://scratch.mit.edu/projects/..."> + </div> + <div id="download-indicator"></div> + <a id="generate-button" class="button" tabindex="0">Generate</a> + <span id="or">or</span> + <label> + <a id="upload-button" class="button" tabindex="0">Upload a Project</a> + <input id="file-input" type="file" accept=".sb3"> + </label> + <div id="error-element"></div> + </form> + </div> + <div id="present-step"> + <div id="script-area"> + </div> + <div id="target-list"> + </div> + </div> + </div> + </body> +</html> |