momenaca commited on
Commit
18c4978
·
1 Parent(s): cb99a01

fix login button bug

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -211,7 +211,10 @@ What do you want to learn ?
211
 
212
 
213
  with gr.Blocks(title=f"{demo_name}", css=css, theme=theme) as demo:
214
- gr.LoginButton()
 
 
 
215
  with gr.Column() as bloc_1:
216
  textbox_1 = gr.Textbox("You are not logged to Hugging Face !", show_label=False)
217
 
 
211
 
212
 
213
  with gr.Blocks(title=f"{demo_name}", css=css, theme=theme) as demo:
214
+ with gr.Row():
215
+ with gr.Column(scale=1):
216
+ gr.LoginButton()
217
+
218
  with gr.Column() as bloc_1:
219
  textbox_1 = gr.Textbox("You are not logged to Hugging Face !", show_label=False)
220