Marthee commited on
Commit
92874af
·
verified ·
1 Parent(s): 4e00b22

Create templates/gui.html

Browse files
Files changed (1) hide show
  1. templates/gui.html +18 -0
templates/gui.html ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>PDF Viewer</title>
7
+ </head>
8
+ <body>
9
+ <h1>PDF Viewer</h1>
10
+ <!-- Embed the PDF in an iframe -->
11
+ <iframe
12
+ src="/view-pdf#page=2"
13
+ width="100%"
14
+ height="800px"
15
+ frameborder="0">
16
+ </iframe>
17
+ </body>
18
+ </html>