Spaces:
Running
on
Zero
Running
on
Zero
Commit
·
8a1adf2
1
Parent(s):
8fe6d31
fix: match cancel button sizes with adjacent submit buttons
Browse files
app.py
CHANGED
|
@@ -1793,7 +1793,7 @@ def create_interface() -> gr.Blocks:
|
|
| 1793 |
)
|
| 1794 |
with gr.Row():
|
| 1795 |
reset_submit_btn = gr.Button("Send Reset Link", variant="primary", size="lg")
|
| 1796 |
-
reset_cancel_btn = gr.Button("Cancel", variant="secondary", size="
|
| 1797 |
reset_message = gr.Markdown("")
|
| 1798 |
|
| 1799 |
# Modal 2: Set new password (only appears after clicking email link)
|
|
@@ -1825,7 +1825,7 @@ def create_interface() -> gr.Blocks:
|
|
| 1825 |
)
|
| 1826 |
with gr.Row():
|
| 1827 |
update_password_btn = gr.Button("Update Password", variant="primary", size="lg")
|
| 1828 |
-
update_cancel_btn = gr.Button("Cancel", variant="secondary", size="
|
| 1829 |
update_password_message = gr.Markdown("")
|
| 1830 |
|
| 1831 |
# Input Page with side-by-side layout (hidden until authenticated)
|
|
|
|
| 1793 |
)
|
| 1794 |
with gr.Row():
|
| 1795 |
reset_submit_btn = gr.Button("Send Reset Link", variant="primary", size="lg")
|
| 1796 |
+
reset_cancel_btn = gr.Button("Cancel", variant="secondary", size="lg")
|
| 1797 |
reset_message = gr.Markdown("")
|
| 1798 |
|
| 1799 |
# Modal 2: Set new password (only appears after clicking email link)
|
|
|
|
| 1825 |
)
|
| 1826 |
with gr.Row():
|
| 1827 |
update_password_btn = gr.Button("Update Password", variant="primary", size="lg")
|
| 1828 |
+
update_cancel_btn = gr.Button("Cancel", variant="secondary", size="lg")
|
| 1829 |
update_password_message = gr.Markdown("")
|
| 1830 |
|
| 1831 |
# Input Page with side-by-side layout (hidden until authenticated)
|