Spaces:
Sleeping
Sleeping
fix login button bug
Browse files
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.
|
|
|
|
|
|
|
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 |
|