File size: 144 Bytes
bce7933
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import gradio as gr

with gr.Blocks() as demo:
    name = gr.Textbox(label="Name")

with demo.route("Test"):
    gr.LoginButton()

demo.launch()