-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfolder.html
More file actions
24 lines (23 loc) · 791 Bytes
/
folder.html
File metadata and controls
24 lines (23 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles/folder.css" />
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; connect-src 'self' http://server:3000; img-src 'self' http://server:3000;"
/>
<title>Folder</title>
</head>
<body>
<div class="buttons">
<button id="button-go-back">Go back to home</button>
<input type="file" name="photos" id="file" hidden />
<label for="file" id="file-upload">Choose a file</label>
<button type="button" id="upload">Upload</button>
</div>
<div id="div-image"></div>
<script src="./renderer/folder.js"></script>
</body>
</html>