multipage-login / app.py
hysts's picture
hysts HF Staff
Create app.py
bce7933 verified
raw
history blame contribute delete
144 Bytes
import gradio as gr
with gr.Blocks() as demo:
name = gr.Textbox(label="Name")
with demo.route("Test"):
gr.LoginButton()
demo.launch()