-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (38 loc) · 1.21 KB
/
Copy pathindex.html
File metadata and controls
42 lines (38 loc) · 1.21 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Frames — Photo Layout Tool</title>
<link rel="stylesheet" href="src/styles.css">
</head>
<body>
<h1>FRAMES</h1>
<div class="layout">
<div class="panel panel-left">
<div class="drop-zone" id="dropZone">
<p>Drop photos here</p>
<p class="hint">or click to browse — then click thumbnails to select</p>
</div>
<input type="file" id="fileInput" accept="image/*" multiple>
<div class="thumbs-header">
<button class="clear-all" id="clearAllBtn" style="display:none">Clear all</button>
</div>
<div class="thumbs" id="thumbs"></div>
</div>
<div class="panel panel-right">
<div class="controls">
<select id="templateSelect">
<option value="">— Select a template —</option>
</select>
<button class="primary" id="downloadBtn" disabled>Download</button>
</div>
<div class="status" id="status"></div>
<div class="preview-container">
<canvas id="preview"></canvas>
</div>
</div>
</div>
<script src="src/app.js"></script>
</body>
</html>