Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -379,26 +379,25 @@ with gr.Blocks(theme='Hev832/Applio', css=css, fill_width=True, fill_height=True
|
|
379 |
)
|
380 |
|
381 |
with gr.Column(scale=1):
|
382 |
-
with gr.Row():
|
383 |
-
gr.Markdown(
|
384 |
-
"""
|
385 |
-
<img src="https://cdn-uploads.huggingface.co/production/uploads/64740cf7485a7c8e1bd51ac9/IzuPBIuMoRpyB04oGBnOX.png" alt="UDG" width="250" style="max-width: 100%; height: auto; class="centered-image">
|
386 |
-
|
387 |
-
Login below using the internal<br>
|
388 |
-
username and password to access the full app.<br>
|
389 |
-
|
390 |
-
Once logged in, a new tab will appear named<br>
|
391 |
-
"QR Code Art Generator" allowing you to access.
|
392 |
-
"""
|
393 |
-
)
|
394 |
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
402 |
|
403 |
|
404 |
with gr.Tab("QR Code Art Generator", visible=False) as app_container:
|
|
|
379 |
)
|
380 |
|
381 |
with gr.Column(scale=1):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
382 |
|
383 |
+
with gr.Row():
|
384 |
+
gr.Markdown(
|
385 |
+
"""
|
386 |
+
Login below using the internal<br>
|
387 |
+
username and password to access the full app.<br>
|
388 |
+
|
389 |
+
Once logged in, a new tab will appear named<br>
|
390 |
+
"QR Code Art Generator" allowing you to access.
|
391 |
+
"""
|
392 |
+
)
|
393 |
+
|
394 |
+
with gr.Row():
|
395 |
+
username = gr.Textbox(label="Username", placeholder="Enter your username", value="ugd")
|
396 |
+
with gr.Row():
|
397 |
+
password = gr.Textbox(label="Password", type="password", placeholder="Enter your password", value="ugd!")
|
398 |
+
with gr.Row():
|
399 |
+
login_button = gr.Button("Login", size="sm")
|
400 |
+
login_message = gr.Markdown(visible=False)
|
401 |
|
402 |
|
403 |
with gr.Tab("QR Code Art Generator", visible=False) as app_container:
|