robertselvam commited on
Commit
68d1b00
1 Parent(s): e176162

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -9
app.py CHANGED
@@ -67,16 +67,13 @@ class CourseGenarator:
67
  return generated_text
68
 
69
  def gradio_interface(self):
70
- with gr.Blocks(css="style.css",theme=gr.themes.Soft()) as app:
71
- gr.HTML("""<img class="leftimage" align="left" src="https://templates.images.credential.net/1612472097627370951721412474196.png" alt="Image" width="210" height="210">
72
- <img class="rightimage" align="right" src="https://companieslogo.com/img/orig/RAND.AS_BIG-0f1935a4.png?t=1651813778" alt="Image" width="210" height="210">""")
73
-
 
 
74
  with gr.Row(elem_id="col-container"):
75
- with gr.Column():
76
- gr.HTML("<br>")
77
- gr.HTML(
78
- """<h1 style="text-align:center; color:"white">Resume Summarizer</h1> """
79
- )
80
  with gr.Column():
81
  resume = gr.File(label="Resume",elem_classes="heightfit")
82
 
 
67
  return generated_text
68
 
69
  def gradio_interface(self):
70
+ with gr.Blocks(css="style.css",theme='karthikeyan-adople/hudsonhayes-gray') as app:
71
+ gr.HTML("""<center class="darkblue" style='background-color:rgb(0,1,36); text-align:center;padding:30px;'><center>
72
+ <img class="leftimage" align="left" src="https://companieslogo.com/img/orig/RAND.AS_BIG-0f1935a4.png?t=1651813778" alt="Image" width="210" height="210">
73
+ <h1 class ="center" style="color:#fff">ADOPLE AI</h1></center>
74
+ <br><center><h1 style="color:#fff">Candidate Assessment and Communication</h1></center>""")
75
+
76
  with gr.Row(elem_id="col-container"):
 
 
 
 
 
77
  with gr.Column():
78
  resume = gr.File(label="Resume",elem_classes="heightfit")
79