Preeeeet commited on
Commit
95e09da
·
verified ·
1 Parent(s): 9aa4e96

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -90,7 +90,13 @@ def process_images(images, job_number, job_name, job_address, uploader_name):
90
 
91
  return output_path
92
 
93
-
 
 
 
 
 
 
94
 
95
 
96
 
 
90
 
91
  return output_path
92
 
93
+ # HTML code to display the logo and title together
94
+ title_with_logo = """
95
+ <div style="text-align: center;">
96
+ <img src="logo.png" alt="Logo" width="100"><br>
97
+ <h1>HKC Report Generator</h1>
98
+ </div>
99
+ """
100
 
101
 
102