Update app.py
Browse files
app.py
CHANGED
|
@@ -453,7 +453,7 @@ with gr.Blocks(css=custom_css, title="π° Tax Optimization Assistant", theme=gr
|
|
| 453 |
with gr.Column(elem_classes=["output-container"]):
|
| 454 |
output = gr.HTML(
|
| 455 |
label="π° Your Tax Optimization Report",
|
| 456 |
-
value="<div style='text-align: center; padding: 40px; color: #
|
| 457 |
)
|
| 458 |
|
| 459 |
# Example section
|
|
@@ -488,7 +488,7 @@ with gr.Blocks(css=custom_css, title="π° Tax Optimization Assistant", theme=gr
|
|
| 488 |
)
|
| 489 |
|
| 490 |
clear_btn.click(
|
| 491 |
-
fn=lambda: [0, "Single", 0, 0, 0, "", "<div style='text-align: center; padding: 40px; color: #
|
| 492 |
outputs=[income_input, filing_status_input, health_insurance_input,
|
| 493 |
home_loan_input, retirement_input, state_input, output]
|
| 494 |
)
|
|
|
|
| 453 |
with gr.Column(elem_classes=["output-container"]):
|
| 454 |
output = gr.HTML(
|
| 455 |
label="π° Your Tax Optimization Report",
|
| 456 |
+
value="<div style='text-align: center; padding: 40px; color: #fff; font-family: Arial;'>π Your personalized tax optimization report will appear here after you click 'Generate Tax Report'</div>"
|
| 457 |
)
|
| 458 |
|
| 459 |
# Example section
|
|
|
|
| 488 |
)
|
| 489 |
|
| 490 |
clear_btn.click(
|
| 491 |
+
fn=lambda: [0, "Single", 0, 0, 0, "", "<div style='text-align: center; padding: 40px; color: #fff; font-family: Arial;'>π Your personalized tax optimization report will appear here after you click 'Generate Tax Report'</div>"],
|
| 492 |
outputs=[income_input, filing_status_input, health_insurance_input,
|
| 493 |
home_loan_input, retirement_input, state_input, output]
|
| 494 |
)
|