Pijush2023 commited on
Commit
bca29f4
·
verified ·
1 Parent(s): 120b100

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -1361,9 +1361,9 @@ with gr.Blocks(theme='Pijush2023/scikit-learn-pijush') as demo:
1361
  image_output_3 = gr.Image(value=generate_image(hardcoded_prompt_3), width=400, height=400)
1362
  refresh_button = gr.Button("Refresh Images")
1363
  refresh_button.click(fn=update_images, inputs=None, outputs=[image_output_1, image_output_2, image_output_3])
1364
-
1365
- login_button = gr.Button("Login with Google")
1366
- login_button.click(fn=login_with_google)
1367
 
1368
  demo.queue()
1369
  demo.launch(share=True)
 
1361
  image_output_3 = gr.Image(value=generate_image(hardcoded_prompt_3), width=400, height=400)
1362
  refresh_button = gr.Button("Refresh Images")
1363
  refresh_button.click(fn=update_images, inputs=None, outputs=[image_output_1, image_output_2, image_output_3])
1364
+ with gr.Column():
1365
+ login_button = gr.Button("Login with Google")
1366
+ login_button.click(fn=login_with_google)
1367
 
1368
  demo.queue()
1369
  demo.launch(share=True)