SAVAI123 commited on
Commit
50fc8be
·
verified ·
1 Parent(s): caa29c9

Create result.html

Browse files
Files changed (1) hide show
  1. templates/result.html +12 -0
templates/result.html ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Transformation Result</title>
5
+ </head>
6
+ <body>
7
+ <h1>Transformation Result</h1>
8
+ <img src="{{ url_for('download_file', filename=filename) }}" style="max-width: 500px;">
9
+ <p><a href="{{ url_for('download_file', filename=filename) }}">Download the image</a></p>
10
+ <p><a href="/">Try another image</a></p>
11
+ </body>
12
+ </html>