-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
32 lines (23 loc) · 946 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>PDF Merger</title>
<link rel="stylesheet" href="bootstrap.min.css" charset="utf-8">
<link rel="stylesheet" href="index.css" charset="utf-8">
</head>
<body>
<div class="container-fluid">
<div class="text-center">
<button id="src-files" class="btn btn-primary btn-lg">Select PDF files to merge (multi select is possible)</button>
<p id="src-file-names"></p><br><br>
<button id="dest-file" class="btn btn-primary btn-lg">Choose a destination to save</button>
<p id="dest-file-name"></p><br><br>
<button id="merge" class="btn btn-primary btn-lg">Merge</button>
<p id="merge-status"></p><br><br>
</div>
</div>
<script> window.$ = window.jQuery = require('./jquery.min.js')</script>
<script type="text/javascript" src="index.js"></script>
</body>
</html>