-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (30 loc) · 1.13 KB
/
index.html
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
<!DOCTYPE html>
<html id="fullPage">
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<meta http-equiv="X-Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<title>ShrinkPub</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body id="dropzone">
<div id="filelist">
<p id="dragHere"><img src="./img/arrow.png">Bring out your Epubs!</p>
</div>
<div id="settings">
<label for="quality" accesskey="q">Quality</label>
<select name="quality" id="qualitySelector">
<option value="veryhigh">Very High</option>
<option value="high">High</option>
<option value="medium" selected>medium</option>
<option value="low">low</option>
<option value="verylow">Very Low</option>
<option value="terrible">Terrible</option>
<option value="atrocious">Atrocious</option>
</select>
</div>
<!-- You can also require other files to run in this process -->
<script src="./renderer.js"></script>
</body>
</html>