-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (52 loc) · 1.76 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>PDF Search Tool</title>
<link rel="shortcut icon" href="favicon.png">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/modals.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- input modal -->
<div id="input-modal" class="modal o-auto w400px">
<div class="modal-hdr-wrap">
<span class="modal-hdr"><i class="fa fa-folder"></i> Search PDF files</span>
</div>
<div class="modal-body">
<div class="input-row">
<h4>
Folder:
<input id="folder-input" type="file" class="pad1" webkitdirectory>
</h4>
</div>
<div class="input-row">
<h4>Search terms (separate terms with semicolons):</h4>
<input id="search-term-input" class="w100" type="text">
</div>
<div class="input-row">
<label class="checkbox-label">
<input id="case-sensitive-chk" type="checkbox">
Case sensitive?
</label>
</div>
<div class="modal-btn-wrap">
<button id="search-btn" class="btn-primary float-right" disabled>Search</button>
</div>
</div>
</div><!-- end input modal -->
<!-- results modal -->
<div id="results-modal" class="modal w400px">
<div class="modal-hdr-wrap">
<span class="modal-hdr"><i class="fa fa-table"></i> Results</span>
</div>
<div class="modal-body o-auto">
<div id="results" class="pnl w100"></div>
</div>
</div><!-- end results modal -->
<div class="pnl w400px pad3">
</div>
<script src="renderer.js" type="text/javascript"></script>
</body>
</html>