blob: 3d1a0c72b6d2452b956ec1adc1287972fc497ecc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<script type="text/javascript" src="demo.js"></script>
<h3><em>Create Album</em></h3>
<div class="steps">
<span class="step">
1.)
<label for="image">Add Images to Album:</label>
<input type="file" id="image" multiple accept="image" name="image" onchange="addimages()"/>
</span>
<span class="step">
2.)
<button onclick="download()">Download Photo Album</button>
</span>
<span class="step">
3.)
<button onclick="reset()">Reset</button>
</span>
</div>
<hr/>
<h3><em>Album Preview</em></h3>
<div id="preview"></div>
<dialog id="modal"></dialog>
</body>
</html>
|