summaryrefslogtreecommitdiffstats
path: root/client.html
diff options
context:
space:
mode:
authordan <[email protected]>2023-06-18 23:02:27 -0400
committerdan <[email protected]>2023-06-18 23:02:27 -0400
commitf2eb91e6f19b511b600db377f6e0e14899028db1 (patch)
treeb8797e4d0ac52e8eb55db500c8076bdd2950a2e8 /client.html
parent1747e69763341abf1111d56e41919a68f9102791 (diff)
downloadphoto-album-gen-f2eb91e6f19b511b600db377f6e0e14899028db1.tar.gz
photo-album-gen-f2eb91e6f19b511b600db377f6e0e14899028db1.tar.bz2
photo-album-gen-f2eb91e6f19b511b600db377f6e0e14899028db1.zip
feat: images pop out into modal on-click
Diffstat (limited to 'client.html')
-rw-r--r--client.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/client.html b/client.html
index 1138dab..0bcd335 100644
--- a/client.html
+++ b/client.html
@@ -6,9 +6,14 @@
</head>
<body>
<script type="text/javascript" src="demo.js"></script>
+ <label for="image">Add Images to Album</label>
<input type="file" id="image" multiple accept="image" name="image" onchange="addimages()"/>
- <button onclick="download()">Download</button>
+ <button onclick="download()">Download Photo Album</button>
+ <button onclick="reset()">Reset</button>
+ <hr/>
+ <h3><em>Album Preview</em></h3>
<div id="preview"></div>
</div>
+ <dialog id="modal"></dialog>
</body>
</html>