collage-maker/web/choose.html

24 lines
722 B
HTML
Raw Normal View History

2024-08-03 00:38:54 -04:00
<!doctype html>
<html>
<head>
<link rel="icon" href="data:;base64,iVBORw0KGgo=" />
<!-- DEVONLY --> <script src="http://localhost:35729/livereload.js"></script>
<script src="choose.js" defer></script>
</head>
<body>
2024-08-03 01:47:22 -04:00
<dialog id="notice_dialog">
<p id="notice_p"></p>
<form><button type="submit" formmethod="dialog">X</button></form>
</dialog>
2024-08-03 00:38:54 -04:00
<label>
<span>Select Album</span>
<select id="album_selector" size="8">
</select>
</label>
<button id="load_albums_button">Load Albums</button>
<button id="load_photos_button">Load Photos</button>
<div id="selected_photos"></div>
<div id="album_photos"></div>
</body>
</html>