Marthee commited on
Commit
1c80c12
·
verified ·
1 Parent(s): 68803d0

Update templates/gui.html

Browse files
Files changed (1) hide show
  1. templates/gui.html +16 -8
templates/gui.html CHANGED
@@ -1,11 +1,19 @@
1
  <!DOCTYPE html>
2
- <html>
 
 
 
 
 
 
 
 
 
 
 
 
3
  <body>
4
-
5
- <h1>The iframe element</h1>
6
-
7
- <iframe src="https://www.w3schools.com" title="W3Schools Free Online Web Tutorials">
8
- </iframe>
9
-
10
  </body>
11
- </html>
 
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>View PDF in Iframe</title>
7
+ <style>
8
+ iframe {
9
+ width: 100%;
10
+ height: 100vh;
11
+ border: none;
12
+ }
13
+ </style>
14
+ </head>
15
  <body>
16
+ <h2>PDF Viewer</h2>
17
+ <iframe src="/pdf"></iframe>
 
 
 
 
18
  </body>
19
+ </html>