diff options
Diffstat (limited to 'deck-editor.html')
| -rw-r--r-- | deck-editor.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/deck-editor.html b/deck-editor.html new file mode 100644 index 0000000..d4fca8a --- /dev/null +++ b/deck-editor.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8"> + <title>SRS Anywhere Card Editor</title> + <link rel="stylesheet" href="style.css"> + </head> + <body> + <div class="status-section"> + <button id="save-button">Download JSON</button> + <input type="file" id="cards-input" accept=".json" /> + </div> + <h1>SRS Anywhere Card Editor</h1> + <div id="table-container"></div> + <script src="card-editor.js"></script> + </body> +</html> |