-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (30 loc) · 871 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
33
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<script>
function process(){
let src = "process.php";
src += "?path="+document.querySelector('#inputPath').value;
document.querySelector('#myIframe').src=src;
alert('allow little time to proces...');
}
</script>
<style>
html,body {font-family:Tahoma;background-color:#EEEEEE;}
</style>
</head>
<body style="text-align:center">
<br>
<table style="width:100%">
<tr>
<td>Pdf path</td>
<td> <input id="inputPath" name="path" value="D:/tempPdfs/italie magazine 2021_2_iPAD.pdf" style="width:90%" /> </td>
</tr>
</table>
<br>
Process PDF <a href="javascript:process()">here</a>
<br><br>
<iframe id='myIframe' style="height:calc(100vh - 200px);overflow:auto;border:1px solid #cccccc;width:90%;display:inline-block;background-color:white;"><iframe>
</body>
</html>