Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -405,7 +405,7 @@ with gr.Blocks(theme='Hev832/Applio', css=css, fill_width=True, fill_height=True
|
|
405 |
|
406 |
with gr.Tab("Welcome"):
|
407 |
with gr.Row():
|
408 |
-
with gr.Column(
|
409 |
gr.Markdown(
|
410 |
"""
|
411 |
<img src="https://cdn-uploads.huggingface.co/production/uploads/64740cf7485a7c8e1bd51ac9/8lHjpId7-JDalHq1JByPE.webp" alt="Yamamoto Logo" class="centered-image">
|
@@ -426,12 +426,12 @@ with gr.Blocks(theme='Hev832/Applio', css=css, fill_width=True, fill_height=True
|
|
426 |
"""
|
427 |
)
|
428 |
|
429 |
-
with gr.Column(
|
430 |
with gr.Row():
|
431 |
gr.Markdown("## Login")
|
432 |
username = gr.Textbox(label="Username", placeholder="Enter your username")
|
433 |
password = gr.Textbox(label="Password", type="password", placeholder="Enter your password")
|
434 |
-
login_button = gr.Button("Login")
|
435 |
login_error = gr.Markdown("Invalid username or password. Please try again.", visible=False)
|
436 |
|
437 |
|
|
|
405 |
|
406 |
with gr.Tab("Welcome"):
|
407 |
with gr.Row():
|
408 |
+
with gr.Column():
|
409 |
gr.Markdown(
|
410 |
"""
|
411 |
<img src="https://cdn-uploads.huggingface.co/production/uploads/64740cf7485a7c8e1bd51ac9/8lHjpId7-JDalHq1JByPE.webp" alt="Yamamoto Logo" class="centered-image">
|
|
|
426 |
"""
|
427 |
)
|
428 |
|
429 |
+
with gr.Column():
|
430 |
with gr.Row():
|
431 |
gr.Markdown("## Login")
|
432 |
username = gr.Textbox(label="Username", placeholder="Enter your username")
|
433 |
password = gr.Textbox(label="Password", type="password", placeholder="Enter your password")
|
434 |
+
login_button = gr.Button("Login", size="sm")
|
435 |
login_error = gr.Markdown("Invalid username or password. Please try again.", visible=False)
|
436 |
|
437 |
|