Spaces:
Sleeping
Sleeping
Commit ·
2a76e2f
1
Parent(s): 45ab2d1
Enhance user input prompts with clearer placeholders and add project configuration files
Browse files
app.py
CHANGED
|
@@ -309,12 +309,12 @@ with gr.Blocks(
|
|
| 309 |
)
|
| 310 |
date_input = gr.Textbox(
|
| 311 |
label="Date",
|
| 312 |
-
placeholder="2024-01-15",
|
| 313 |
max_lines=1,
|
| 314 |
)
|
| 315 |
time_input = gr.Textbox(
|
| 316 |
label="Time (UTC)",
|
| 317 |
-
placeholder="12:00:00",
|
| 318 |
max_lines=1,
|
| 319 |
)
|
| 320 |
email_input = gr.Textbox(
|
|
|
|
| 309 |
)
|
| 310 |
date_input = gr.Textbox(
|
| 311 |
label="Date",
|
| 312 |
+
placeholder="2024-01-15 <- Type Here",
|
| 313 |
max_lines=1,
|
| 314 |
)
|
| 315 |
time_input = gr.Textbox(
|
| 316 |
label="Time (UTC)",
|
| 317 |
+
placeholder="12:00:00 <- Type Here",
|
| 318 |
max_lines=1,
|
| 319 |
)
|
| 320 |
email_input = gr.Textbox(
|