Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hysts-debug
/
multipage-login
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
hysts
HF Staff
commited on
Apr 4, 2025
Commit
bce7933
·
verified
·
1 Parent(s):
e05103b
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
import gradio as gr
2
+
3
+
with gr.Blocks() as demo:
4
+
name = gr.Textbox(label="Name")
5
+
6
+
with demo.route("Test"):
7
+
gr.LoginButton()
8
+
9
+
demo.launch()